@extends('layouts.admin') @section('title','Service bookings') @section('heading','Service bookings') @section('content')
@forelse($bookings as $booking)@empty@endforelse
BookingServiceProviderAppointmentTotalStatus
{{ $booking->number }}{{ $booking->offering?->name }}{{ $booking->vendor?->name }}{{ $booking->starts_at->format('d M Y H:i') }}{{ number_format((float)$booking->total,2) }}{{ str_replace('_',' ',$booking->status) }}Open
No bookings found.
@endsection