@extends('layouts.app') @section('title', 'Stock Movements') @section('content')
@forelse($movements as $movement) @empty @endforelse
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.
@if($movements->hasPages())
{{ $movements->links() }}
@endif @endsection