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

Save The Food Product Details

Edit Back
ID{{ $saveTheFoodProduct->id }}
Product{{ $saveTheFoodProduct->product?->name ?? 'N/A' }}
Discount %{{ $saveTheFoodProduct->discount_percentage }}%
Stock Remaining{{ $saveTheFoodProduct->stock_remaining }}
Expires At{{ $saveTheFoodProduct->expires_at ? \Carbon\Carbon::parse($saveTheFoodProduct->expires_at)->format('Y-m-d') : '-' }}
Featured{{ $saveTheFoodProduct->is_featured ? 'Yes' : 'No' }}
Created{{ $saveTheFoodProduct->created_at->format('Y-m-d H:i') }}
@endsection