@extends('master') @section('title') Payment @endsection @section('content')
{{-- Add Collection Modal --}} {{-- Success/Error Alerts --}}
@if (Session::has('success'))
@elseif (Session::has('danger'))
@endif {{-- Collection Table --}}
Payment List
@foreach ($collections as $item) @endforeach
Tracking ID Booking Date Payment Date Collection Amount Payment Amounts Action
{{ $item->tracking_id }} {{ $item->date }} {{ $item->payment_date }} {{ $item->amount }} {{ $item->payment_amount }}
{{-- Scripts --}} @endsection