@extends('layouts.admin') @section('title', 'Participating Hotels') @section('content')
Participating Hotels

Manage participating hotels for the loyalty program.

@if(session('success'))
{{ session('success') }}
@endif @if($hotels->count() > 0)
@foreach($hotels as $hotel) @endforeach
Hotel Description Sort Order Status Created
@if($hotel->image) {{ $hotel->title }} @else
@endif
{{ $hotel->title }}

{{ Str::limit($hotel->description, 60) }}

{{ $hotel->sort_order }} @if($hotel->is_active) Active @else Inactive @endif {{ $hotel->created_at->format('M d, Y') }}
@else
No Participating Hotels Found

Start by adding your first participating hotel to the loyalty program.

Add First Hotel
@endif
@endsection