@extends('layouts.app') @section('title', 'Hotels') @section('page-title', 'Hotels') @section('content')
Manage all hotels registered on the platform.
| Hotel | Location | Status | Subscription | Staff | Registered | Actions |
|---|---|---|---|---|---|---|
|
{{ $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') }} | |
No hotels foundNo hotels match your search. | ||||||