@extends('layouts.authenticated') @section('title', 'Hotels | HMS') @section('page-title', 'Hotels') @section('content')

Hotels

{{ $organization->name }}

Organizations Create Hotel
@forelse ($hotels as $hotel) @empty @endforelse
Name Email Location Currency Check-in/out Status Actions
{{ $hotel->name }}
{{ $hotel->slug }}
{{ $hotel->email ?: 'N/A' }} {{ collect([$hotel->city, $hotel->state, $hotel->country])->filter()->join(', ') ?: 'N/A' }} {{ $hotel->currency }} {{ $hotel->checkin_time ?: 'N/A' }} / {{ $hotel->checkout_time ?: 'N/A' }} {{ $hotel->status }} Edit
@csrf @method('DELETE')
No hotels found.
{{ $hotels->links() }}
@endsection