@extends('layouts.app') @section('title', 'Purchases') @section('content')
| # | Supplier | Date | Total | Paid | Actions |
|---|---|---|---|---|---|
| {{ $purchase->id }} | {{ $purchase->supplier->name }} | {{ $purchase->date->format('d M Y') }} | Rs. {{ number_format($purchase->total_amount, 2) }} | Rs. {{ number_format($purchase->paid_amount, 2) }} | View |
| No purchases yet | |||||