@extends('admin::layouts.master') @section('title', 'Save The Food Products') @section('content')

Save The Food Products

Add
@forelse($saveTheFoodProducts as $stf) @empty @endforelse
ID Product Discount % Stock Expires Featured Actions
{{ $stf->id }} {{ $stf->product?->name ?? 'N/A' }} {{ $stf->discount_percentage }}% {{ $stf->stock_remaining }} {{ $stf->expires_at ? \Carbon\Carbon::parse($stf->expires_at)->format('Y-m-d') : '-' }} {{ $stf->is_featured ? 'Yes' : 'No' }} Edit
@csrf @method('DELETE')
No save the food products found.
{{ $saveTheFoodProducts->links() }}
@endsection