@extends('layouts.admin') @section('title','Food Items') @section('content')
Total: {{ $foods->total() }}
Add Food Item
@forelse($foods as $food) @empty @endforelse
ItemCategoryPriceBadgesStatusActions
{{ $food->name }}
{{ $food->name }}
@if($food->name_bn)
{{ $food->name_bn }}
@endif
{{ $food->category->name }} ৳{{ number_format($food->effective_price,0) }} @if($food->discount_price) ৳{{ number_format($food->base_price,0) }} @endif
@if($food->is_bestseller)Best@endif @if($food->is_featured)Featured@endif @if($food->is_new)New@endif @if($food->is_halal)Halal@endif
@csrf @method('DELETE')
No food items found.
{{ $foods->withQueryString()->links() }}
@push('scripts') @endpush @endsection