@extends('admin.layouts.app') @section('title', 'Purchase Return Details') @section('page_title', 'Purchase Return Details') @section('content')
| Return No: | {{ $purchaseReturn->return_no }} |
|---|---|
| Purchase Invoice: | {{ $purchaseReturn->purchase->invoice_no ?? 'N/A' }} |
| Supplier: | {{ $purchaseReturn->supplier->name ?? 'N/A' }} |
| Shipment No: | {{ $purchaseReturn->shipment_number ?? 'N/A' }} |
| Date: | {{ date('d-m-Y', strtotime($purchaseReturn->date)) }} |
| Total Amount: | {{ number_format($purchaseReturn->total, 2) }} |
| Sl | Product | Unit | Quantity | Rate | Amount |
|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $item->product->name ?? 'N/A' }} | {{ $item->product->unit->short_name ?? 'N/A' }} | {{ $item->quantity }} | {{ number_format($item->rate, 2) }} | {{ number_format($item->quantity * $item->rate, 2) }} |
| Total: | {{ number_format($purchaseReturn->total, 2) }} | ||||
{{ $purchaseReturn->reason }}
@endif