@extends('admin.layouts.app') @section('title', 'Inventory Management') @section('content')

Inventory Management

Manage hotel stock and supplies

Categories Add Item
@if($lowStockCount > 0)

{{ $lowStockCount }} items are running low on stock and need attention.

View Low Stock Items
@endif
Clear
@forelse($items as $item) @empty @endforelse
Item SKU Category Stock Min Stock Unit Cost Actions
{{ $item->name }}
{{ $item->unit }}
{{ $item->sku }} {{ $item->category->name ?? '-' }} @if($item->isLowStock()) {{ $item->current_stock }} {{ $item->unit }} @else {{ $item->current_stock }} {{ $item->unit }} @endif {{ $item->minimum_stock }} ₦{{ number_format($item->unit_cost, 2) }}
@csrf @method('DELETE')

No inventory items found. Add your first item

{{ $items->withQueryString()->links() }}
@push('scripts') @endpush @endsection