{{ csrf_field() }}
@if (!empty($infos))
Registration No |
Project |
Customer Name |
Phones |
Product |
Recovery Agent Name |
Dues Details |
Task Details |
@foreach ($infos as $key => $sell)
{{ $sell['registration_no'] }}
|
{{ ucwords($sell['project_name']) }}
|
{{ ucwords($sell['customer_name']) }}
|
{{ $sell['phone'] }}
|
{{ $sell['product_id'] }}
|
{{ ucwords(App\Models\User::find($sell['recovery_agent_id'])->name ?? '-') }}
|
|
|
@php
$payable_amounts = explode(',', $sell->payable_amount);
$schedule_dates = explode(',', $sell->schedule_date);
@endphp
Registration No: {{ $sell['registration_no'] }}
Terms
Payable Amount {{$transaction->systemSettingCurrency()}}
Schedule Date
@foreach ($sell['term'] as $key => $value)
{{ $value }}
@endforeach
Total:
{{ $transaction->convert_money_format($total_amount_payable) }}
@endforeach
Registration No |
Project |
Customer Name |
Phones |
Product |
Recovery Agent Name |
Dues Details |
Task Details |
@else
{{__('lang.there_has_no_data')}} |
@endif