@extends('admin.layout') @section('title', 'Menu Items') @section('content')
{{ $items->count() }} items shown.
| Item | Category | Base Price | Flavors | Modifiers | Add-ons | Featured | Status | Actions |
|---|---|---|---|---|---|---|---|---|
{{ $item->name }}
{{ Str::limit($item->description,45) }}
|
{{ $item->category->name }} | ₱{{ number_format($item->price,2) }} | @php $flavors = $item->modifierGroups->where('type','flavor'); @endphp @if($flavors->count()) {{ $flavors->count() }} group{{ $flavors->count()>1?'s':'' }} @else — @endif | @php $mods = $item->modifierGroups->where('type','modifier'); @endphp @if($mods->count()) {{ $mods->count() }} group{{ $mods->count()>1?'s':'' }} @else — @endif | @php $addons = $item->modifierGroups->where('type','addon'); @endphp @if($addons->count()) {{ $addons->count() }} add-on{{ $addons->count()>1?'s':'' }} @else — @endif | @if($item->featured) Yes @else — @endif |
|
|
| No items found. | ||||||||