@extends('layouts.app') @section('content')
{{ __('inventory.items') }}
{{ persian_num($totalItems) }}
{{ __('inventory.active_items') ?? 'اقلام فعال' }}
{{ persian_num($activeItems) }}
{{ __('inventory.warehouses') }}
{{ persian_num($totalWarehouses) }}
{{ __('inventory.low_stock_items') ?? 'موجودی کم' }}
{{ persian_num($lowStockItems->count()) }}
{{ $txn->item?->name ?? '-' }}
{{ $txn->warehouse?->name ?? '-' }}
{{ $txn->type === 'out' ? '-' : '+' }}{{ persian_num(number_format($txn->quantity, 2)) }}
{{ $txn->created_at ? calendar_date($txn->created_at) : '' }}
{{ $item->name }}
{{ $item->code ?? '-' }} · {{ $item->unit ?? '-' }}
{{ persian_num(number_format($item->current_stock, 2)) }}
{{ __('inventory.min_stock') ?? 'حداقل' }}: {{ persian_num(number_format($item->min_stock ?? 0, 2)) }}
{{ __('inventory.all_stock_ok') ?? 'همه اقلام موجودی کافی دارند' }}