| {{ __('hotel::modules.quotation.quotationNumber') }} | {{ __('hotel::modules.quotation.guest') }} | {{ __('hotel::modules.quotation.date') }} | {{ __('hotel::modules.quotation.amount') }} | {{ __('hotel::modules.quotation.status') }} | {{ __('hotel::modules.quotation.action') }} |
|---|---|---|---|---|---|
| {{ $quotation->quotation_number }} |
{{ $initials }}
{{ $quotation->primaryGuest?->full_name ?? '-' }}
|
{{ optional($quotation->check_in_date)->format('M d, Y') }}
|
{{ currency_format($quotation->total_amount) }} | {{ $quotation->status?->label() ?? '-' }} |
{{ __('hotel::modules.quotation.quotaConPdf') }}
@if(user_can('Update Hotel Quotation'))
@endif
@if(user_can('Create Hotel Reservation'))
{{ __('hotel::modules.quotation.makeReservation') }}
@endif
@if($canEdit)
{{ __('hotel::modules.quotation.edit') }}
@endif
|
|
{{ __('hotel::modules.quotation.noQuotationsFound') }} @if(user_can('Create Hotel Quotation')) {{ __('hotel::modules.quotation.createFirstQuotation') }} @endif |
|||||