@extends('layouts.dashboard') @section('title', $pageTitle) @section('page_header')
| S.No | Transfer No | Company | From Warehouse | To Warehouse | Date | Items | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ ++$key }} | {{ $transfer->transaction_no }} | {{ $transfer->company?->name ?? '-' }} | {{ $transfer->warehouse?->name ?? '-' }} | @php $toWarehouseId = $toWarehouseMap[$transfer->id] ?? null; @endphp {{ $toWarehouseId ? ($warehouseNames[$toWarehouseId] ?? '-') : '-' }} | {{ $transfer->date?->format('Y-m-d') ?? '-' }} | {{ number_format((float) $transfer->items->sum('quantity'), 2) }} | {{ ucfirst($transfer->status) }} |