@extends('layouts.app') @section('title', 'Dashboard') @section('page-title', 'Dashboard') @section('content') {{-- Statistik ringkas --}}
| Barang | Kategori | Stok | Minimum | Status | |
|---|---|---|---|---|---|
| {{ $item->description }}
@if($item->brand_type) {{ $item->brand_type }}@endif |
{{ $item->category->name }} | {{ $item->current_stock }} {{ $item->unit }} | {{ $item->minimum_stock }} | {{ ucfirst($item->stockStatus()) }} | Tambah Stok |
| Tgl & Jam | Barang | Tipe | Qty | Oleh | Keterangan |
|---|---|---|---|---|---|
| {{ $t->transaction_at->format('d/m/Y H:i') }} | {{ $t->item->description }} | {{ $t->type }} | @if($t->type==='RCD' || ($t->type==='ADJ' && $t->quantity>0)) +{{ abs($t->quantity) }} @else -{{ abs($t->quantity) }} @endif | {{ $t->user->name }} | {{ $t->notes ?: '-' }} |
| Belum ada transaksi. | |||||