@extends('layouts.app')
@section('title', 'Stock Transfer Details')
@section('content')
| 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
| Product |
Batch |
Quantity |
@foreach($stockTransfer->items as $item)
| {{ $item->product->name }} |
{{ $item->productBatch->batch_number }} |
{{ $item->quantity }} |
@endforeach
@endsection