@extends('layouts.admin') @section('title', $product->name) @section('page_title', __('Product') . ' - ' . $product->name) @section('content')
{{ $product->code }}
{{ __('Category') }}: {{ $product->category?->name ?? '-' }}
{{ __('Unit') }}: {{ $product->unit }}
{{ __('Price') }}: {{ number_format((float) $product->price, 2) }}
{{ __('Cost') }}: {{ number_format((float) $product->cost, 2) }}
هامش الربح: {{ $product->profit_margin }}%
الحد الأدنى: {{ $product->min_stock }}
{{ __('Status') }}: @if($product->is_active) {{ __('Active') }} @else {{ __('Inactive') }} @endif
@if($product->description){{ $product->description }}
@endif العودة| {{ __('Warehouse') }} | الكمية | المحجوز | المتاح |
|---|---|---|---|
| {{ $s->warehouse?->name }} | {{ $s->quantity }} | {{ $s->reserved }} | {{ $s->available }} |
| لا يوجد مخزون مسجل | |||
| الإجمالي | {{ $product->total_stock }} | — | — |
| التاريخ | النوع | {{ __('Warehouse') }} | الكمية | قبل | بعد | المستخدم |
|---|---|---|---|---|---|---|
| {{ $m->created_at?->format('d/m/Y H:i') }} | {{ $label }} | {{ $m->warehouse?->name }} | {{ $m->quantity }} | {{ $m->balance_before }} | {{ $m->balance_after }} | {{ $m->user?->name ?? '-' }} |
| لا توجد حركات | ||||||