@extends('layouts.app') @section('title', 'Stock Movements') @section('content')
Track all inventory movements
| Item | Warehouse | Type | Quantity | Reference | Date |
|---|---|---|---|---|---|
| {{ $movement->item->item_code ?? '' }} {{ $movement->item->item_name ?? '' }} | {{ $movement->warehouse->name ?? '' }} | @if(strtolower($movement->type) === 'in') IN @else OUT @endif | {{ number_format($movement->quantity, 2) }} | {{ $movement->reference ?? '-' }} | {{ $movement->created_at ? $movement->created_at->format('d M Y') : '' }} |
| No movements recorded. | |||||