@extends('admin.layouts.app') @section('title', 'Inventory Management') @section('content')
Manage hotel stock and supplies
{{ $lowStockCount }} items are running low on stock and need attention.
View Low Stock Items| 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) }} | |
|
No inventory items found. Add your first item |
||||||