À propos
@if($hostel->description)
{{ $hostel->description }}
@elseHébergement authentique situé {{ $hostel->region ? 'à ' . $hostel->region->name : 'en Tunisie' }}. Contactez-nous pour plus d'informations.
@endifInformations
@if($hostel->city)
@endif
@if($hostel->country)
@endif
@if($hostel->phone)
@endif
@if($hostel->email)
@endif
@if($hostel->address)
@endif
Ville
{{ $hostel->city }}
Pays
{{ $hostel->country }}
Téléphone
{{ $hostel->phone }}
Email
{{ $hostel->email }}
Adresse
{{ $hostel->address }}
Chambres disponibles ({{ $hostel->rooms->count() }})
@foreach($hostel->rooms as $room)
@endforeach
{{ $room->name }}
@if($room->beds->count() > 0)
@foreach($room->beds->take(4) as $bed)
{{ $bed->name }}
@endforeach
@if($room->beds->count() > 4)
+{{ $room->beds->count() - 4 }}
@endif
@endif