@extends('layouts.admin') @section('content') Bookings List {{-- Home Bookings --}} @if (Session::has('success')) × Success! {{ Session::get('success') }} @endif @if (Session::has('error')) × Success! {{ Session::get('error') }} @endif @can('booking-create') Add Booking @endcan Search By: Name Booking ID Email Phone Booking Status: All @forelse (getBookingStatus() as $key => $value) {{ $value->name }} @empty @endforelse Vehicle Type: All @forelse (getVehicles() as $key => $value) {{ $value->name }} @empty @endforelse Service Type: All Distance Hourly Payment Status: All Pending Paid Date: Pickup Date Created Date All Today Tommorow Next 3 Days Next 7 Days This Month Next Month Yesterday Last Week Last Month Last Year This Year Date Range @php $month_start = \Carbon\Carbon::now()->startOfMonth()->toDateString(); $month_end = \Carbon\Carbon::now()->endOfMonth()->toDateString(); @endphp Search Reset Sr. Booking ID Name Vehicle Pickup Drop-off Pick-up Date Status {{-- Created At --}} Grand Total Action {{-- delete booking model --}} Delete Booking Are you sure? The record will be permanently deleted and cannot be recovered. @endsection @section('scripts') @endsection