@extends('layouts.admin-simple') @section('title', $item->item_description) @section('page-title', $item->item_description) @section('page-subtitle', 'Item Details') @section('breadcrumb')
{{ $item->notes }}
@endif| Date | Type | Quantity | Reference | Notes |
|---|---|---|---|---|
| {{ $movement->created_at->format('M d, Y H:i') }} | @if($movement->movement_type === 'in') Stock In @else Stock Out @endif | @if($movement->movement_type === 'in') +{{ $movement->quantity }} @else -{{ $movement->quantity }} @endif {{ $item->unit ? $item->unit->unit_symbol : $item->unit_of_measure }} | {{ $movement->reference_number ?? 'N/A' }} | {{ $movement->notes ?? 'No notes' }} |