@extends('dining.layouts.public') @section('title', $restaurant->title . ' - The LaLiT Dining Club') @section('styles') @endsection @section('content')
Back to all venues
{{ $restaurant->title }} @if($restaurant->cuisine)
{{ strtoupper($restaurant->cuisine) }}
@endif

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

@if($restaurant->hotel)
{{ $restaurant->hotel->location }}
@endif

About

{!! nl2br(e($restaurant->description)) !!}

@if($restaurant->level)

Level

{{ $restaurant->level }}

@endif @if($restaurant->seatings)

Seatings

{{ $restaurant->seatings }}

@endif @if($restaurant->type)

Type

{{ $restaurant->type }}

@endif
@if($restaurant->address) @endif @if($restaurant->enquiry_contact_no) @endif @if($restaurant->cuisine) @endif @if($restaurant->category) @endif
@if($restaurant->enquiry_contact_no) Call Now @endif
@if($restaurant->images && $restaurant->images->count() > 0)

Gallery

@foreach($restaurant->images as $image)
{{ $restaurant->title }}
@endforeach
@endif
@endsection