@extends('layouts.app') @section('title', 'Bookings') @section('content')
| # | 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 |
| No bookings found. | |||||||