@extends('layout.admin_layout') @section('title', 'admin-dashboard') @section('body') @section('header', 'Food & Drinks') @section('badge') @endsection

Food & Drinks List

@csrf
{{-- --}}
{{-- --}} {{-- --}}
New
@forelse ($foods as $food) @empty @endforelse
# No Name Category Pub Price Action
{{-- --}}
{{ $food->name }} {{ $food->category->name }} {{ $food->pub->name }} {{ $food->price }} View {{-- Edit Delete --}} Edit @if ($food->status == 1) Active @else Inactive @endif
No data found.
@endsection @push('scripts') @endpush