Cancellation Requests

View Metrics
@if($cancellations->isEmpty())

No cancellation requests

No cancellations found with status: {{ ucfirst($currentStatus) }}

@else
@foreach($cancellations as $cancellation) @endforeach
ID Booking Parties Cancelled By Policy Amounts Status Date Actions
#{{ $cancellation->id }}
Booking #{{ $cancellation->booking_id }}
{{ $cancellation->booking->formatted_final_date }}
{{ $cancellation->booking->formatted_final_time }}
Client: {{ $cancellation->booking->bookingRequest->client->name }}
Golfer: {{ $cancellation->booking->bookingRequest->golfer->name }}
{{ $cancellation->cancelledBy->name }}
{{ ucfirst($cancellation->cancelledBy->role) }}
{{ $cancellation->getRefundPolicyLabel() }}
{{ round($cancellation->hours_until_booking, 1) }}h notice
Client: ${{ number_format($cancellation->refund_amount_client, 2) }}
Golfer: ${{ number_format($cancellation->payment_amount_golfer, 2) }}
{{ $cancellation->getStatusLabel() }} {{ $cancellation->created_at->format('M d, Y') }}
{{ $cancellation->created_at->format('g:i A') }}
Review
{{ $cancellations->appends(['status' => $currentStatus])->links() }}
@endif