@extends('layouts/contentLayoutMaster')
@section('title', 'Food List')
@section('vendor-style')
{{-- Page Css files --}}
@endsection
@section('page-style')
{{-- Page Css files --}}
@endsection
@section('content')
@foreach($food as $f)
ID
Name
Local Name
Category
Cuisine
Effort
Price
Tag
SubTag
Actions
@endforeach
{{ $f->id }}
{{ $f->name }}
{{ $f->local_name }}
@if($f->category) {{ $f->category->name }} @endif
{{ $f->cuisine_names }}
{{ is_array($f->effort) ? implode(', ', $f->effort) : $f->effort }}
{{ is_array($f->prices) ? implode(', ', $f->prices) : $f->prices }}
@if($f->tag) {{ $f->tag->name }} @endif
@if($f->sub_tag) {{ $f->sub_tag->name }} @endif