@extends('layouts.public') @section('title', 'Restaurants, Bars & Cafes - The LaLiT Dining Club') @section('styles') @endsection @section('content')

RESTAURANTS,
BARS & CAFES

Explore our collection of exceptional dining venues.

Restaurants

Restaurants, Bars & CAFES

Explore our collection of exceptional dining venues and wellness destinations across The LaLiT properties

@forelse($restaurants as $restaurant)
{{ $restaurant->title }}
{{ $restaurant->hotel ? $restaurant->hotel->location : 'Location not set' }}

{{ strtoupper($restaurant->title) }}

{{--

{{ \Illuminate\Support\Str::words($restaurant->description, 15, '...') }}

--}} @if($restaurant->cuisine)
Cuisine: {{ $restaurant->cuisine }}
@endif @if($restaurant->type)
Type: {{ $restaurant->type }}
@endif @if($restaurant->enquiry_contact_no)
Enquiry: {{ $restaurant->enquiry_contact_no }}
@endif
{{ $restaurant->hotel ? $restaurant->hotel->location : 'Location not set' }}
MORE DETAILS
@empty

No restaurants available at the moment.

@endforelse
@endsection