@extends('layouts.app') @section('title', 'Stock Movement Report') @section('breadcrumb')
{{ $from->format('d M Y') }} — {{ $to->format('d M Y') }}
| Type | Direction | Count | Total Qty |
|---|---|---|---|
| {{ ucfirst($bt->movement_type) }} | {{ strtoupper($bt->direction) }} | {{ $bt->count }} | {{ $bt->direction === 'in' ? '+' : '-' }}{{ number_format($bt->total_qty) }} |
| Date & Time | Product | Type | Direction | Qty | Before | After | Reference | By |
|---|---|---|---|---|---|---|---|---|
| {{ $m->created_at->format('d M Y H:i') }} |
{{ $m->productVariant->product->name }}
{{ $m->productVariant->variant_name }}
|
{{ ucfirst($m->movement_type) }} | {{ strtoupper($m->direction) }} | {{ $m->direction === 'in' ? '+' : '-' }}{{ $m->quantity }} | {{ $m->before_qty }} | {{ $m->after_qty }} | {{ $m->reference ?? '—' }} |
{{ $m->creator->name }} |
| No movements in this period | ||||||||