@extends('admin.layouts.master') @section('title', 'مخزون العيادة') @section('content')
| # | اسم الصنف | التصنيف | الوحدة | الحد الأدنى | الكمية الحالية | سعر الشراء | سعر البيع | حالة المخزون | إجراءات |
|---|---|---|---|---|---|---|---|---|---|
| {{ $item->id }} | {{ $item->name }} | {{ $item->category ?: '-' }} | {{ $item->unit ?: '-' }} | {{ $item->min_quantity }} | {{ $item->current_quantity }} |
{{ number_format($item->purchase_price, 2) }}
|
@if($item->sale_price > 0)
{{ number_format($item->sale_price, 2) }}
|
@if($isLow) أقل من الحد الأدنى @else مخزون كافي @endif | {{-- زر زيادة المخزون --}} {{-- زر نقصان المخزون --}} @include('admin.inventory.model') تعديل |
لا توجد أصناف في المخزون حتى الآن.
@endif