@extends('layouts.app') @section('title', 'Stock Transfer Details') @section('content')

Stock Transfer Details

Reference No {{ $stockTransfer->reference_no }}
Source Branch {{ $stockTransfer->sourceBranch->name }}
Destination Branch {{ $stockTransfer->destinationBranch->name }}
Transfer Date {{ $stockTransfer->transfer_date->format('d M Y') }}
Status {{ ucfirst($stockTransfer->status) }}
Note {{ $stockTransfer->note ?? '-' }}

Transfer Items

@foreach($stockTransfer->items as $item) @endforeach
Product Batch Quantity
{{ $item->product->name }} {{ $item->productBatch->batch_number }} {{ $item->quantity }}
@endsection