@extends('admin.layouts.master') @section('title', 'حالة المخزون') @section('page_title', 'تقرير حالة المخزون الحالية') @section('breadcrumbs')
| SKU | المنتج | المستودع | الكمية | محجوز | متاح | سعر التكلفة | القيمة |
|---|---|---|---|---|---|---|---|
{{ $s->product?->sku }} |
{{ $s->product?->name_ar ?? '—' }} @if($low)حد أدنى@endif | {{ $s->warehouse?->name ?? '—' }} | {{ number_format((float) $s->on_hand, 2) }} | {{ number_format((float) $s->reserved_qty, 2) }} | {{ number_format((float) $s->available_qty, 2) }} | {{ number_format((float) ($s->product?->cost_price ?? 0), 2) }} | {{ number_format((float) $s->value, 2) }} |