@extends('layouts.admin') @section('title','Bookings') @section('page-title','Bookings') @section('content')
Reset
@forelse($bookings as $b) @empty @endforelse
ReferenceClientServiceDate & TimeAmountStatusPaymentActions
{{ $b->reference_code }}
{{ $b->client_name }}
{{ $b->client_phone }}
{{ $b->service_name }} {{ \Carbon\Carbon::parse($b->appointment_date)->format('M j, Y') }}
{{ $b->appointment_time }}
₵{{ number_format($b->total_amount,2) }} {{ ucfirst($b->status) }} {{ ucfirst($b->payment_status) }} View
No bookings found.
{{ $bookings->links() }} @endsection