@extends('admin-dining.layouts.app') @section('title', 'Hotels') @section('page-title', 'Hotels') @section('page-actions') Add Hotel @endsection @section('content')
All Hotels
@forelse($hotels as $hotel) @empty @endforelse
Image Location Address Status Featured Actions
@if($hotel->image) {{ $hotel->location }} @else No image @endif {{ $hotel->location }} {{ Str::limit($hotel->address, 50) ?? '-' }} @if($hotel->status == 'published') Published @elseif($hotel->status == 'draft') Draft @else Private @endif @if($hotel->is_featured) @else @endif Edit
@csrf @method('DELETE')
No hotels found. Create your first hotel
{{ $hotels->links() }}
@endsection