@extends('layouts.admin') @section('title', 'Purchase Bills') @section('page-title', 'Purchase Bills') @section('content')
| Issue Date | Doc. No. | Status | Vendor Name | Due Date | Tax | Amount | Date of Payment | Action | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $note->bill_date->format('d M Y') }} | {{ $note->bill_number }} | {{ $status['label'] }} | {{ $note->partyName() }} | {{ $note->due_date?->format('d M Y') ?? '—' }} | ₹{{ number_format($note->total_tax, 2) }} | ₹{{ number_format($note->grand_total, 2) }} | {{ $note->payment_date?->format('d M Y') ?? '—' }} |
Record vendor bills with line items, GST, due dates, and payment tracking.
New Purchase Bill @include('admin.purchase-bills.partials.lifecycle')