@extends('layouts.app') @section('title', 'Hotels') @section('page-title', 'Hotels') @section('content')
Reset
@forelse($hotels as $hotel) @empty @endforelse
HotelLocationStatus SubscriptionStaffRegisteredActions
{{ $hotel->name }}
{{ $hotel->email }}
{{ $hotel->city }}, {{ $hotel->state }} @if($hotel->status === 'active') Active @elseif($hotel->status === 'trial') Trial @elseif($hotel->status === 'suspended') Suspended @else Pending @endif @if($hotel->subscription) {{ ucfirst($hotel->subscription->duration) }} @if($hotel->subscription->end_date)
Expires {{ $hotel->subscription->end_date->format('d M Y') }}
@endif @else None @endif
{{ $hotel->staff_count ?? '—' }} {{ $hotel->created_at->format('d M Y') }}
@if($hotel->status !== 'suspended') @else
@csrf
@endif

No hotels found

No hotels match your search.

@if($hotels->hasPages()) @endif
@endsection