@extends('layouts.app') @section('title', 'Menu Items') @section('content')
| Name | Category | Price | Stock Tracked | Status | |
|---|---|---|---|---|---|
| {{ $p->name }} @if ($p->serveSequenceLabel()) {{ $p->serveSequenceLabel() }} @endif | {{ $p->category->name ?? '-' }} | {{ number_format($p->price,2) }} | {{ $p->track_inventory ? 'Yes ('.$p->stock_qty.')' : 'No' }} | {{ $p->is_active ? 'Active' : 'Hidden' }} | Edit |