@extends('layouts.app_backend') @section('content')
@if(session('success'))
@endif

{{ $deal->deal_name }}

ADD MORE INVESTORS ADD Documents

Documents

@if(count($dealDocuments) > 0) @foreach($dealDocuments as $document)
{{ $document->created_at->format('d-m-y') }}
{{ $document->document_name }}
@endforeach @else
SORRY!
You haven't uploaded any yet.
@endif

Investments

@if(count($investments) > 0) @foreach($investments as $investment)

Investor

{{ $investment->user->name }}

{{ $investment->invested_on }}${{ $investment->invested_amt }}

@endforeach @else
SORRY!
No investor has been assigned yet.
@endif
@endsection