@extends('admin-dining.layouts.app') @section('title', 'Hotels') @section('page-title', 'Hotels') @section('page-actions') Add Hotel @endsection @section('content')
| Image | Location | Address | Status | Featured | Actions |
|---|---|---|---|---|---|
|
@if($hotel->image)
|
{{ $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 |
| No hotels found. Create your first hotel | |||||