@if (!empty($credit_details))
|
Item
|
Subtotal
|
Total
|
|
{{ $credit_details[0]['item'] }}
|
{{ money((float) $credit_details[0]['credit_amount']) }}
|
{{ money((float) $credit_details[0]['credit_amount']) }}
|
@else
|
Service
|
Editor
|
Title
|
Due Date |
Subtotal
|
Discount
|
Total
|
@foreach ($upload_details as $key => $item)
|
{{ $item['service']->service or 'N/A' }}
|
{{ $item['editor'] or 'N/A' }}
|
{{ $item['doc_name'] }}
|
{{ $item['due_date'] }}
|
{{ money($item['subtotal']) }}
|
{{ !empty($item['discount']) ? money($item['discount']) : '' }}
|
{{ money($item['total_amt']) }}
|
@endforeach
Total
|
|
|
|
|
{{ money($totalData['subtotal']) }}
|
@if ($totalData['discount'])
{{ money($totalData['discount']) }}
@endif
|
{{ money($totalData['total']) }}
|
@endif