@extends('layouts.app') @section('content')
OPERATIONS

Appointments

@foreach($appointments as $a)@endforeach
Date & timeCustomerService / stylistPaymentStatus
{{ $a->starts_at->format('d M, g:i A') }}{{ $a->reference }}{{ $a->customer->name }}{{ $a->customer->mobile }}{{ $a->service->name }}{{ $a->stylist->name }}{{ $a->payment_status }}LKR {{ number_format($a->total,2) }}
@csrf @method('PATCH')
{{ $appointments->links() }}
@endsection