@extends('layouts.app') @section('title', 'Vendor Details') @section('page-title', 'Vendor Overview') @section('content')

{{ $vendor->name }}

{{ $vendor->company_name ?? 'Individual' }}


Contact Information

Email
{{ $vendor->email ?? 'N/A' }}
Phone
{{ $vendor->phone ?? 'N/A' }}
GST Number
{{ $vendor->gst_number ?? 'GST Unregistered' }}

Payable Balance

{{ formatCurrency($vendor->opening_balance) }}

Balance to be paid

Billing Address

{{ $vendor->billing_address }}

Bills functionality is coming soon.

Payments Made functionality is coming soon.

@endsection