@extends('layouts.app') @section('content') {{-- ── SUCCESS TOAST ── --}} @if(session('success'))
| S.No | Booking ID | Customer | Stay Dates | Booking Amt | Cancel Charge | Cancel Date | Actions |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $cancellation->booking_reference ?? '—' }}
|
{{ $cancellation->hotel_name ?? '—' }}
{{ Str::limit($cancellation->hotel_address ?? '—', 40) }}
|
{{ !empty($cancellation->checkin) ? \Carbon\Carbon::parse($cancellation->checkin)->format('d M Y') : '—' }}
@if(!empty($cancellation->checkout))
→ {{ \Carbon\Carbon::parse($cancellation->checkout)->format('d M Y') }}
@endif
|
{{ number_format($cancellation->booking_amount ?? 0, 2) }} {{ $cancellation->booking_currency ?? 'INR' }} | @php $charge = floatval($cancellation->cancellation_charges ?? 0); @endphp @if($charge > 0) {{ number_format($charge, 2) }} {{ $cancellation->cancellation_currency ?? 'INR' }} @else No Charge @endif |
{{ !empty($cancellation->cancel_date) ? \Carbon\Carbon::parse($cancellation->cancel_date)->format('d M Y') : '—' }}
{{ !empty($cancellation->cancel_date) ? \Carbon\Carbon::parse($cancellation->cancel_date)->format('h:i A') : '' }}
|
|
| No cancellations found. | |||||||
No cancellations found for this filter.