{{ __('Item Management') }}

Shop: {{ $shop->name }}

+ Add New Item Manage Categories
@if (session('success')) @endif
Total Items ({{ $items->total() }})
@if ($items->isEmpty())
You currently have no items listed in your shop. Click '+ Add New Item' above to start!
@else
@foreach ($items as $item) @endforeach
Image Name Category Price Status Actions
@if ($item->image_path) {{ $item->name }} @else No Image @endif
{{ $item->name }}
{{ $item->description }}
{{ $item->category->name ?? 'Uncategorized' }} ${{ number_format($item->price, 2) }} @if ($item->is_available) Available @else Out of Stock @endif Edit
@csrf @method('DELETE')
{{ $items->links('pagination::bootstrap-5') }}
@endif