@extends('layouts.app') @section('title', __('app.inventory')) @section('content')
সব লেনদেন {{ __('app.low_stock') }} {{ __('app.out_of_stock') }}
@forelse ($transactions as $t) @empty @endforelse
তারিখ {{ __('app.products') }} ধরন পরিমাণ অবশিষ্ট ব্যবহারকারী
{{ $t->created_at->format('d M Y, h:i A') }} {{ $t->product->name }} {{ $t->isIncreasing() ? '+' : '−' }}{{ $t->type }} {{ $t->quantity }} {{ $t->stock_after }} {{ $t->user?->name ?? '—' }}
{{ __('app.no_results') }}
{{ $transactions->links() }}
@endsection