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

Mes Hostels

Gérez tous vos établissements depuis un seul endroit.

Ajouter un hostel
@forelse($hostels as $hostel) @empty @endforelse
NOM LOCALISATION DEVISE STATUT ACTIONS
{{ strtoupper(substr($hostel->name, 0, 1)) }}
{{ $hostel->name }}
{{ $hostel->city }}, {{ $hostel->country }} {{ $hostel->default_currency }} @if($hostel->id == session('hostel_id')) ★ Actif @else
@csrf
@endif
🏢
Vous n'avez aucun hostel configuré.
Créer votre premier établissement
@endsection