@extends('layouts.app') @section('title', __('system.foods.view.menu')) @push('page_css') @if ($food->label_image_url != null) @endif @endpush @section('content')
@if ($food->food_image_url != null)
@else

{{ $food->food_image_name }}

@endif
{{ $food->name }}

{{ $food->type }}

{{ Form::open(['route' => ['restaurant.foods.destroy', ['food' => $food->id]], 'class' => 'data-confirm', 'data-confirm-message' => 'Are you sure you want to destroy ' . $food->name . ' food?', 'data-confirm-title' => 'Delete', 'id' => 'delete-form_' . $food->id, 'method' => 'delete', 'autocomplete' => 'off']) }} {{ Form::close() }}
{{ __('system.fields.about') }}
{{ __('system.fields.food_name') }}
{{ $food->name }}
{{ __('system.fields.category_name') }}
@foreach ($food->food_categories as $category)
  • {{ $category->category_name }}
  • @endforeach
    {{ __('system.fields.food_price') }}
    {{ $food->usd_price ?? '-' }}
    {{ __('system.fields.preparation_time') }}
    {{ $food->preparation_time ?? '-' }}
    {{ __('system.fields.food_description') }}:
    {{ $food->description }}
    @foreach ($food->gallery_images_with_details as $img)
    @endforeach
    @endsection