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

Cancellation Approval

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Booking #: {{ $booking->booking_number }}
Customer: {{ $booking->customer->name }}
Cancellation Date: {{ $cancellation->cancellation_date->format('Y-m-d') }}
Fee: {{ number_format($cancellation->cancellation_fee, 2) }}
Refund: {{ number_format($cancellation->refund_amount, 2) }}
@csrf
@csrf
@endsection