@extends('admin.layouts.admin') @section('title') Admin | Restaurant / Nightlife Details @endsection @section('styles') @endsection @section('content')

Restaurant / Nightlife Details

 

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Service Information

@if($recordDetails->is_active == 1) ACTIVE @else INACTIVE @endif

{{ strtoupper($recordDetails->services->name) }}

{{ $recordDetails->res_night_name }}

@if(isset($recordDetails->provider)&&$recordDetails->provider) {{ $recordDetails->provider->name }}   Click here @else Not found. @endif

{{ $recordDetails->res_night_ph?:'Not found.' }}

{{ $recordDetails->cost_for_two }}

{{ $recordDetails->resNightType }}

@if(count($recordDetails->cuisines) > 0) @foreach($recordDetails->cuisines as $keyCuisine => $cuisine) {{ $cuisine->name }} @endforeach @else No record found. @endif

{{ $recordDetails->res_night_address }}

{{ $recordDetails->res_night_desc }}

 

Hours Operation

@if(isset($recordDetails->hours) && count($recordDetails->hours)> 0 ) @foreach($recordDetails->hours as $key => $hour) @endforeach @else @endif
All Days From To
{{ $hour->day }} {{ $hours[$hour->open_time] }} {{ $hours[$hour->end_time]}}
No record found.

 

Block Date Management

Date Slot Time

 

Availability Management

@if(count($recordDetails->availableSlots) > 0)
@foreach($recordDetails->availableSlots as $keySlot => $slot) {{ $slot->slot_start }} @endforeach
@else No slots found. @endif

 

Gallery Images

Menu Images

@endsection @section('scripts') @endsection