@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
Tag
SubTag
Actions
@endforeach
{{ $f->id }}
{{ $f->name }}
{{ $f->local_name }}
@if($f->category) {{ $f->category->name }} @endif
@if($f->tag) {{ $f->tag->name }} @endif
@if($f->sub_tag) {{ $f->sub_tag->name }} @endif