@extends('vendor.layout') @section('title','Service Bookings') @section('heading','Service bookings') @section('content')
Appointment queue
@forelse($bookings as $booking)@empty@endforelse
BookingServiceSchedulePaymentStatusTotal
{{ $booking->number }}{{ $booking->offering?->name }}{{ $booking->starts_at->format('d M Y H:i') }}{{ strtoupper($booking->payment_method) }} ยท {{ $booking->payment_status }}{{ str_replace('_',' ',$booking->status) }}INR {{ number_format($booking->total,2) }}Manage
No matching service bookings.
@endsection