@extends('layouts.app') @section('content')
| SN | Name | Price | Description | Total Ingredients | Total Cost | Added By | Actions |
|---|---|---|---|---|---|---|---|
| {{ $records->firstItem() + $loop->index }} | {{ $record->name }} | {{ number_format((float)$record->price, 2) }} | {{ $record->description ?: '-' }} | {{ $record->ingredient_consumptions_count }} | {{ number_format((float)($record->ingredient_consumptions_sum_total_cost ?? 0), 2) }} | {{ $record->creator?->name ?? 'Admin User' }} | |
| No data available in table | |||||||