@extends('layouts.app') @section('title', 'Vendor Report') @section('content')
| Vendor Name | Phone | Address | GST | Total Purchases | Total Amount |
|---|---|---|---|---|---|
| {{ $vendor->name }} | {{ $vendor->phone ?? '—' }} | {{ $vendor->address ?? '—' }} | {{ $vendor->gst ?? '—' }} | {{ $vendor->purchases_count }} | ₹{{ number_format($vendor->purchases_sum_total ?? 0, 2) }} |
| No vendors found. | |||||