@extends('super-admin.layout') @section('breadcrumb', 'Hostels') @section('page-title', 'Gestion des hostels') @section('content')
{{ $hostels->total() }} hostel(s) sur la plateforme
| # | Hostel | Propriétaire | Localisation | Chambres | Réservations | Statut | Actions |
|---|---|---|---|---|---|---|---|
| {{ $hostel->id }} |
{{ $hostel->name }}
|
{{ $hostel->owner?->name ?? '—' }}
{{ $hostel->owner?->email ?? '' }}
|
{{ $hostel->city ?? '' }}{{ $hostel->city && $hostel->country ? ', ' : '' }}{{ $hostel->country ?? '—' }} | {{ $hostel->rooms_count ?? 0 }} | {{ $hostel->reservations_count ?? 0 }} | @if($hostel->is_active ?? true) ✅ Actif @else 🚫 Désactivé @endif |
👁 Voir
{{-- Activer / Désactiver --}}
|
| Aucun hostel enregistré sur la plateforme. | |||||||