@extends('backend.layout') @section('backend_content')
| Item | Price | Status | Tags | Created By | Actions |
|---|---|---|---|---|---|
|
@if ($item->image)
@endif
{{ $item->title }}
{{ \Illuminate\Support\Str::limit($item->description, 55) }}
|
${{ number_format((float) $item->price, 2) }} | @if ($item->is_available) Available @else Unavailable @endif | @php $tags = collect($item->search_tags ?? [])->take(3); @endphp @forelse ($tags as $tag) {{ $tag }} @empty - @endforelse | {{ $item->creator?->name ?? 'N/A' }} | |
| No food items found. Add your first item. | |||||