@if (Session::has('success'))
{{ Session::get('success') }}
@elseif (Session::has('danger'))
{{ Session::get('danger') }}
@endif
{{-- Collection Table --}}
Payment List
| Tracking ID |
Booking Date |
Payment Date |
Collection Amount |
Payment Amounts |
Action |
@foreach ($collections as $item)
| {{ $item->tracking_id }} |
{{ $item->date }} |
{{ $item->payment_date }} |
{{ $item->amount }} |
{{ $item->payment_amount }} |
|
@endforeach