@extends('layouts.app') @section('title', 'Rooms') @section('content')

Rooms

Gérez les chambres de votre hostel.

+ Ajouter une chambre
@forelse($rooms as $room) @empty @endforelse
Nom Type Capacité max Lits Statut Actions
{{ $room->name }} {{ $room->type === 'private' ? '🔒 Private' : '🛏️ Dormitory' }} {{ $room->max_capacity }} pers. {{ $room->type === 'dormitory' ? $room->beds_count . ' lit(s)' : '—' }} {{ $room->is_enabled ? '✅ Active' : '❌ Désactivée' }} Modifier
Aucune chambre. Créer la première
@push('scripts') @endpush @endsection