@extends('layouts.app') @section('title', 'Hotéis') @section('content')
@forelse ($hotels as $h) @empty @endforelse
NomeMarcaPaísQuartosAções
{{ $h->name }} {{ $h->brand?->name ?? '—' }} {{ $h->country?->name ?? '—' }} {{ $h->room_count ?? '—' }}
@csrf @method('DELETE')
Sem hotéis.
@if ($hotels->hasPages()) @endif @endsection