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

Bookings

@if(session('success'))
{{ session('success') }}
@endif
@forelse($bookings as $booking) @empty @endforelse
# Customer Phone Slot User Stage Status Actions
Customer Slot User Stage Status
{{ $loop->iteration }} {{ $booking->customer_name }} {{ $booking->customer_phone }} {{ $booking->slot->shift ?? '-' }}
{{ $booking->slot->start_time ?? '-' }} - {{ $booking->slot->end_time ?? '-' }}
{{ $booking->slot->location ?? '-' }}
{{ $booking->user->name ?? '-' }} {{ ucfirst($booking->stage) }} {{ ucfirst($booking->status) }} View Edit
@csrf @method('DELETE')
No bookings found.
{{ $bookings->links() }}
@endsection @section('scripts') @endsection