{{-- resources/views/super-admin/hostels/show.blade.php --}} @extends('super-admin.layout') @section('breadcrumb', 'Hostels › Détail') @section('page-title', $hostel->name) @section('content') {{-- Infos hostel ──────────────────────────────────────────── --}}
🏨 Informations hostel
Nom {{ $hostel->name }}
Propriétaire {{ $hostel->owner?->name ?? '—' }}
Email owner {{ $hostel->owner?->email ?? '—' }}
Ville {{ $hostel->city ?? '—' }}
Pays {{ $hostel->country ?? '—' }}
Statut @if($hostel->is_active ?? true) ✅ Actif @else 🚫 Désactivé @endif
📊 Activité
Chambres
{{ $stats['total_rooms'] }}
Lits total
{{ $stats['total_beds'] }}
Réservations
{{ $stats['total_reservations'] }}
{{ $stats['active_reservations'] }} actives
Équipe
{{ $stats['team_count'] }}
{{-- Actions ─────────────────────────────────────────────── --}}
⚙️ Actions plateforme
@csrf @method('PATCH')
@csrf @method('DELETE')
← Retour
@endsection