@extends('layouts.app') @section('title', 'Purchase Report') @section('content')
| Date | Vendor | Subtotal | Discount | GST | Total | Actions |
|---|---|---|---|---|---|---|
| {{ $purchase->purchase_date->format('d M Y') }} | {{ $purchase->vendor->name ?? '—' }} | ₹{{ number_format($purchase->subtotal, 2) }} | ₹{{ number_format($purchase->discount_amount, 2) }} | ₹{{ number_format($purchase->gst_amount, 2) }} | ₹{{ number_format($purchase->total, 2) }} | View |
| No purchases found for the selected period. | ||||||