|
@if($isNewBooking)
{{ \Carbon\Carbon::parse($item->booking_date)->format('d/m/Y') }}
@endif
|
@if($isNewBooking)
{{ $item->no }}
@endif
|
@if($isNewBooking)
{{ $item->status }}
@endif
|
@if($isNewBooking)
{{ $item->agent }}
@endif
|
@if($isNewBooking)
{{ $item->payment }}
@endif
|
@if($isNewBooking)
{{ $item->currency }}
@endif
|
@if($isNewBooking)
{{ number_format($item->paid, 0) }}
@endif
|
@if($isNewBooking)
{{ number_format($item->deposit, 0) }}
@endif
|
{{ \Carbon\Carbon::parse($item->lesson_date)->format('d/m/Y') }} |
{{ $item->lesson_time }} |
{{ $item->code }} |
{{ $item->name }} |
{{ $item->pax }} |
{{ number_format($item->nett, 0) }} |
{{ number_format($item->gross, 0) }} |
@empty
| Total: |
{{ number_format($totalPaid, 0) }} |
{{ number_format($totalDeposit, 0) }} |
|
{{ $data->sum('pax') }} |
{{ number_format($totalNett, 0) }} |
{{ number_format($totalGross, 0) }} |
@endif