@extends('layouts.admin') @section('content')

Bookings List

@if (Session::has('success'))
× Success! {{ Session::get('success') }}
@endif @if (Session::has('error'))
× Success! {{ Session::get('error') }}
@endif
@can('booking-create') @endcan
@php $month_start = \Carbon\Carbon::now()->startOfMonth()->toDateString(); $month_end = \Carbon\Carbon::now()->endOfMonth()->toDateString(); @endphp
{{-- --}}
Sr. Booking ID Name Vehicle Pickup Drop-off Pick-up Date StatusCreated AtGrand Total Action
{{-- delete booking model --}}
@endsection @section('scripts') @endsection