@extends('layouts.app') @section('title', __('system.food_categories.view.title')) @push('page_css') @if ($restaurant->cover_image_url != null) @endif @endpush @section('content')
@if ($restaurant->logo_url != null)
@else

{{ $restaurant->logo_name }}

@endif
{{ $restaurant->name }}

{{ $restaurant->type }}

{{ Form::open(['route' => ['restaurant.default.restaurant', ['restaurant' => $restaurant->id]], 'method' => 'put', 'autocomplete' => 'off']) }} Back {{ Form::close() }}
{{ Form::open(['route' => ['restaurant.restaurants.destroy', ['restaurant' => $restaurant->id]], 'autocomplete' => 'off', 'class' => 'data-confirm', 'data-confirm-message' => 'Are you sure you want to destroy ' . $restaurant->name . ' restaurant?', 'data-confirm-title' => 'Delete', 'id' => 'delete-form_' . $restaurant->id, 'method' => 'delete']) }} {{ Form::close() }}
About
Contact Details:
Restaurant Name
{{ $restaurant->name }}
Restaurant Type
{{ $restaurant->type }}
Phone Number
{{ $restaurant->phone_number ?? '-' }}
Email
{{ $restaurant->contact_email ?? '-' }}
Language
{{ $restaurant->language_string ?? 'English' }}
Location :
City
{{ $restaurant->city ?? '-' }}
State
{{ $restaurant->state ?? '-' }}
Country
{{ $restaurant->country ?? '-' }}
Address
{{ $restaurant->address ?? '-' }}
Created By:
Name
{{ $restaurant->created_user->name }}
Email
{{ $restaurant->created_user->email ?? '-' }}
Phone
{{ $restaurant->created_user->phone_number ?? '-' }}
Date & Time
{{ $restaurant->created_at }}
Staffs
@if ($restaurant->users) @foreach ($restaurant->users as $user) @endforeach @endif
@if ($user->profile_url != null) @else
{{ $user->logo_name }}
@endif
{{ $user->name }}
{{ $user->email }}
{{ $user->phone_number }}
@endsection