@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

Food Items

{{-- --}}
{{-- --}}
@if(session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif {{-- --}} @foreach ($foods as $item ) {{-- --}} @endforeach
ID Food Name Category Serving Actions
{{$item->name}}
{{$item->cat->name}}
@foreach($item->serving as $serving) {{$serving->serving_size}} @endforeach
Actions
@include('partials.footer')
@include('global.footer-links')