@extends('super-admin.layout') @section('title', 'Inventory Report') @section('subtitle', 'Current inventory status and stock analysis') @section('content')
| Dish | Category | Current Stock | Daily Velocity | Days Until Stockout | Stock Value |
|---|---|---|---|---|---|
| {{ $item['name'] }} | {{ $item['category'] }} | {{ $item['current_stock'] }} | {{ $item['daily_velocity'] }} | @if($item['estimated_stockout_days']) {{ $item['estimated_stockout_days'] }} days @else - @endif | ₦{{ number_format($item['stock_value'], 0) }} |
| Category | Total Items | Stock Units | Stock Value | Avg Velocity | Critical Items | Low Items |
|---|---|---|---|---|---|---|
| {{ $category['category'] }} | {{ $category['total_items'] }} | {{ number_format($category['total_stock']) }} | ₦{{ number_format($category['total_value'], 0) }} | {{ number_format($category['avg_velocity'], 1) }} | @if($category['critical_items'] > 0) {{ $category['critical_items'] }} @else 0 @endif | @if($category['low_items'] > 0) {{ $category['low_items'] }} @else 0 @endif |
| Dish | Category | Stock | Status | Sold (Period) | Daily Velocity | Est. Stockout | Stock Value |
|---|---|---|---|---|---|---|---|
|
{{ $item['name'] }}
|
{{ $item['category'] }} | {{ $item['current_stock'] }} | @if($item['stock_status'] === 'critical') Critical @elseif($item['stock_status'] === 'low') Low @elseif($item['stock_status'] === 'warning') Warning @else Good @endif | {{ $item['sold_in_period'] }} | {{ $item['daily_velocity'] }} | @if($item['estimated_stockout_days']) {{ $item['estimated_stockout_days'] }} days @else - @endif | ₦{{ number_format($item['stock_value'], 0) }} |