@extends('layouts.app') @section('content')

Stock Transfer Matrix

Monitor live transit logistics challans allocated from central warehouse distribution cells.

Allocate Stock Dispatch
@if(session('success'))
{{ session('success') }}
@endif
Active Transfer Challans Register
@forelse($transfers as $transfer) < @empty @endforelse
Challan Token Allocated Product Item Destination Terminal Counter Qty Dispatched Transit Status Dispatch Timestamp
{{ $transfer->transfer_challan_no }} {{ $transfer->product->name ?? 'N/A' }} {{ $transfer->exhibition_title ?? 'Counter Node' }} 📍 {{ $transfer->exhibition_venue ?? 'On-Site' }}, {{ $transfer->exhibition_city ?? '' }} {{ $transfer->exhibition->name ?? 'Main Warehouse Terminal' }} 📍 {{ $transfer->exhibition->venue ?? 'On-Site' }}, {{ $transfer->exhibition->city ?? 'Patur' }} {{ $transfer->quantity_sent }} pcs @if($transfer->status === 'dispatched') In Transit loop @else Received & Locked @endif {{ \Carbon\Carbon::parse($transfer->dispatched_at)->format('d M, Y - h:i A') }}
No stock inventory transfers routed through this station pool yet.
@endsection