@extends('layout',['heading'=>'سجل تغيّرات المخزون']) @section('content')

{{ $item->name }}

السعر الحالي: {{ number_format($item->unit_price,2) }} جنيه — الكمية الحالية: {{ $item->quantity }}

العودة للمخزون
@forelse($history as $h)@empty@endforelse
التاريخالسعر السابقالسعر الجديدالكمية السابقةالكمية الجديدة
{{ $h->created_at }}{{ number_format($h->old_unit_price,2) }}{{ number_format($h->new_unit_price,2) }}{{ $h->old_quantity }}{{ $h->new_quantity }}
لا توجد تغيّرات مسجلة بعد
@endsection