@extends('layouts.admin') @section('page-title') Establishment Restaurants List @endsection @section('page-top-title') Establishment Restaurants @endsection @section('content-body')
{{-- Messages --}} @include('backend.inc.messages')

Establishment Restaurants {{ $establishment ? ' - ' . $establishment->name : '' }}

Add New Restaurant
{{--

Current Establishment Restaurants

Add New Restaurant --}} {{-- Add New Restaurant Modal --}}
@foreach ($establishment->Restaurants as $restaurant) {{-- --}} {{-- --}} {{-- ViewDetails / Update Modal --}}
@endforeach
Restaurant Name Presentation & Food Quality Food Service Efficiency Beverage Service Total Action
{{ $restaurant->name }} {{ $restaurant->presentation_food_quality }}{{ $restaurant->presentation_food_quality_comments }} {{ $restaurant->food_service_efficiency }}{{ $restaurant->food_service_efficiency_comment }} {{ $restaurant->beverage_service }} {{ $restaurant->subtotal }} View Details @if (auth()->user()->user_type == 3) @endif
@endsection @section('page-scripts') {{-- --}} @endsection