@extends('layouts.app')
@section('title', 'Hotéis')
@section('content')
| Nome | Marca | País | Quartos | Ações |
@forelse ($hotels as $h)
| {{ $h->name }} |
{{ $h->brand?->name ?? '—' }} |
{{ $h->country?->name ?? '—' }} |
{{ $h->room_count ?? '—' }} |
|
@empty
| Sem hotéis. |
@endforelse
@if ($hotels->hasPages())
@endif
@endsection