@extends('layouts.main') @section('title', 'Bookings') @section('content')

{{__('Bookings')}}

@if($bookings->count() > 0)
@foreach($bookings as $book)
{{date('d M, Y', strtotime($book->start_date))}} {{date('g:i A',strtotime($book->start_time))}} - {{date('d M, Y', strtotime($book->end_date))}} {{date('g:i A',strtotime($book->end_time))}}
Location Studio Equipment Resource
{{$book->loc->location}} @if($book->studioNum) Y @endif @if($book->equipNum) Y @endif @if($book->resourceNum) Y @endif
See All
@endforeach
{!! $bookings->withQueryString()->links('vendor.pagination.bootstrap-5') !!}
@else

No Bookings found.

@endif
@endsection @section('footer_scripts') @endsection