@extends('layouts.app') @section('title', 'Purchase #' . $purchase->id) @section('content')
| Category | Weight | Bags | Price/Bag | Subtotal |
|---|---|---|---|---|
| {{ $item->product->category->name ?? '-' }} | {{ $item->product->weight->label ?? '-' }} | {{ $item->bags }} | Rs. {{ number_format($item->price_per_bag, 2) }} | Rs. {{ number_format($item->subtotal, 2) }} |
| Total: | Rs. {{ number_format($purchase->total_amount, 2) }} | |||
| Paid at Purchase: | Rs. {{ number_format($purchase->paid_amount, 2) }} | |||