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

{{ $deal->deal_name }}

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

My Taxes

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

My Investments

@foreach ($investments as $investment) @endforeach
No Deal Name Deal Start Date Deal Close Date Invested Investment Date
{{ $loop->iteration }} {{ $investment->deals->deal_name }} {{ $investment->deals->start_date }} {{ $investment->deals->end_date }} {{ $investment->invested_amt }} {{ $investment->invested_on }}
@endsection