Investor Name
|
{{$investment_detail->user->name }}
|
Investor Email
|
{{$investment_detail->user->email }}
|
Date of Investment
|
{{$investment_detail->created_at }}
|
Amount
|
INR {{ number_format($investment_detail->invested_amount, 0, ',', ',') }} |
Payment Gateway
|
@if($investment_detail->payment_gateway == 1)
Manual payment |
@else
Cashfree payment |
@endif
Payment Status
|
Complete |
Aadhar Number
|
{{$adhar_document ? $adhar_document->doc_number : '-'}} |
Pan Number
|
{{$pan_document ? $pan_document->doc_number : '-'}} |
Bank Account
|
{{ $investment_detail->user->userDetail ? $investment_detail->user->userDetail->account_no : '-'}} |
IFSC Code
|
{{$investment_detail->user->userDetail ? $investment_detail->user->userDetail->ifsc_code : '-' }} |
# |
Tentative Date |
Expected Amount |
@foreach($investment_detail->userInvestmentMonthlyPayment as $monthly_pay)
{{$loop->iteration}} |
{{ $monthly_pay->date }} |
₹ {{ $monthly_pay->amount }} |
@endforeach
Invested Amount |
₹ {{ number_format($investment_detail->invested_amount, 0, ',', ',') }} |
Total Profit |
₹ {{ number_format($investment_detail->userInvestmentMonthlyPayment->sum('amount'), 0, ',', ',') }} |
Final Amount |
₹ {{ number_format(($investment_detail->invested_amount + $investment_detail->userInvestmentMonthlyPayment->sum('amount')), 0, ',', ',') }} |