@extends('admin.layouts.app') @section('title', 'Bookings') @section('page-title', 'Service Bookings') @section('page-subtitle', 'Manage all service appointments') @section('content')
@if(request()->hasAny(['search','status']))Clear@endif
@forelse($bookings as $booking) @empty @endforelse
Customer Status Actions
{{ strtoupper(substr($booking->customer_name, 0, 1)) }}

{{ $booking->customer_name }}

{{ $booking->customer_email }}

{{ $booking->status }}
@csrf @method('DELETE')
No bookings found.
@if(isset($bookings) && method_exists($bookings, 'hasPages') && $bookings->hasPages())
{{ $bookings->withQueryString()->links() }}
@endif
@endsection