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

{{ $booking->service->name }}

Booking Details

Professional

{{ $booking->professional->business_name }}

Service

{{ $booking->service->name }}

Date & Time

{{ $booking->scheduled_at->format('M d, Y g:i A') }}

Duration

{{ $booking->duration }} minutes

Location

{{ $booking->city }}

Payment Summary

Service Fee ${{ number_format($booking->amount, 2) }}
Total ${{ number_format($booking->amount, 2) }}
@csrf
@endsection