@extends('layouts.app') @section('title', 'Hotels') @section('content_header')

Hotels

@endsection @section('content_body') Add New Hotel
Reset
@if (session('success'))
{{ session('success') }}
@endif {{-- --}} @foreach ($hotels as $hotel) {{-- --}} @endforeach
ID Hotel NameCity CountryLocation Feature Image Actions
{{ $hotel->id }} {{ $hotel->name }} {{ $hotel->location }}{{ $hotel->city->name ?? '-' }} {{ $hotel->country->name ?? '-' }} @if ($hotel->feature_image) Feature Image @else No image @endif Edit
@csrf @method('DELETE')
{{ $hotels->links('pagination::bootstrap-4') }}
@endsection