@extends('layouts.admin') @section('title', 'Bookings - ' . $shop->name) @section('content')
Manage bookings for {{ $shop->name }}
Total
Pending
Confirmed
Completed
Today
Upcoming
| Reference | Customer | Service | Date & Time | Duration | Amount | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $booking->booking_reference }}
@if($booking->invoice_number)
{{ $booking->invoice_number }}
@endif
|
{{ $booking->customer_name }}
{{ $booking->customer_email }}
{{ $booking->customer_phone }}
|
@if($booking->service)
{{ $booking->service->name }}
@if($booking->assigned_staff_name)
Staff: {{ $booking->assigned_staff_name }}
@endif
@else
Service not found
@endif
|
{{ $booking->booking_date->format('M d, Y') }}
{{ $booking->start_time }} - {{ $booking->end_time }}
|
{{ $booking->duration_minutes }}min |
${{ number_format($booking->total_amount, 2) }}
{{ ucfirst($booking->payment_status) }}
|
{{ ucfirst(str_replace('_', ' ', $booking->status)) }} |
|
Start managing your appointments by creating your first booking.