@extends('layouts.app') @section('title', $item->name) @section('content')

Code: {{ $item->code }}

Category: {{ $item->category }}

In Hand: {{ $item->quantity_in_hand }}

Movement History

@foreach($item->movements->sortByDesc('created_at') as $m)@endforeach
DateTypeQtyReference
{{ $m->created_at->format('d M H:i') }}{{ strtoupper($m->type) }}{{ $m->quantity }}{{ $m->reference ?? '-' }}
@endsection