| {{ __('hotel::modules.banquet.name') }} | {{ __('hotel::modules.banquet.capacity') }} | {{ __('hotel::modules.banquet.baseRate') }} | {{ __('hotel::modules.banquet.status') }} | {{ __('hotel::modules.banquet.action') }} |
|---|---|---|---|---|
| {{ $venue->name }} | {{ $venue->capacity ?? __('app.notAvailable') }} | {{ $venue->base_rate !== null ? currency_format($venue->base_rate) : __('app.notAvailable') }} | @if($venue->is_active) {{ __('hotel::modules.banquet.active') }} @else {{ __('hotel::modules.banquet.inactive') }} @endif |
@if(user_can('Update Hotel Venue'))
|
| {{ __('messages.noRecordFound') }} | ||||
| {{ __('hotel::modules.banquet.eventNumber') }} | {{ __('hotel::modules.banquet.eventName') }} | {{ __('hotel::modules.banquet.venue') }} | {{ __('hotel::modules.banquet.customer') }} | {{ __('hotel::modules.banquet.dateTime') }} | {{ __('hotel::modules.banquet.guests') }} | {{ __('hotel::modules.banquet.status') }} | {{ __('hotel::modules.banquet.action') }} |
|---|---|---|---|---|---|---|---|
| {{ $event->event_number }} | {{ $event->event_name }} | {{ $event->venue?->name ?? __('app.notAvailable') }} | {{ $event->customer?->name ?? '--' }} | {{ $event->start_time->format('M d, Y g:i A') }} | {{ $event->expected_guests }} | @php $statusColors = [ 'tentative' => 'bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:text-yellow-200', 'confirmed' => 'bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200', 'cancelled' => 'bg-red-100 text-red-800 dark:bg-red-900 dark:text-red-200', 'completed' => 'bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200', ]; $color = $statusColors[$event->status->value] ?? 'bg-gray-100 text-gray-800'; @endphp {{ $event->status->label() }} |
@if(user_can('Update Hotel Event'))
|
| {{ __('messages.noRecordFound') }} | |||||||
{{ $activeEvent->event_name }}
{{ $activeEvent->venue?->name ?? __('app.notAvailable') }}
{{ $activeEvent->start_time?->format('M d, Y g:i A') ?? __('app.notAvailable') }}
{{ $activeEvent->end_time?->format('M d, Y g:i A') ?? __('app.notAvailable') }}
{{ $activeEvent->expected_guests ?? __('app.notAvailable') }}
@php $colors = ['tentative' => 'bg-yellow-100 text-yellow-800', 'confirmed' => 'bg-blue-100 text-blue-800', 'cancelled' => 'bg-red-100 text-red-800', 'completed' => 'bg-green-100 text-green-800']; $c = $colors[$activeEvent->status->value] ?? 'bg-gray-100 text-gray-800'; @endphp {{ $activeEvent->status->label() }}
{{ $activeEvent->customer->name }}
{{ $activeEvent->package_amount !== null ? currency_format($activeEvent->package_amount) : __('app.notAvailable') }}
{{ $activeEvent->advance_paid ? currency_format($activeEvent->advance_paid) : __('app.notAvailable') }}