{{ __('messages.Add, Edit, Delete') }} {{ __('ui.Bookings') }}
@if (Session::has('success'))

{{ Session::get('success') }}

@endif @if (Session::has('error'))

{{ Session::get('error') }}

@endif
@can('booking-create') {{ __('messages.Add New booking') }} @endcan
#{{ __('messages.booking_id') }}{{ __('messages.user_name') }}{{ __('messages.check_in_date') }}{{ __('messages.check_out_date') }}{{ __('messages.total_price') }}{{ __('messages.status') }} {{ __('messages.Creation Date') }} {{ __('messages.Action') }} @foreach ($bookings as $key => $booking) {{ $bookings->count() - $key }}{{ $booking->id }}{{ $booking->user_id }}{{ $booking->check_in_date }}{{ $booking->check_out_date }}{{ $booking->total_price }}{{ $booking->status }}{{ $booking->created_at }} @endforeach
@can('booking-approve') @endcan @can('booking-reject') @endcan @can('booking-edit') @endcan