@php $v = $selected; @endphp

{{ $v->name }}

@if($v->vendor_code)

Code: {{ $v->vendor_code }}

@endif @if($v->city)

{{ $v->city }}{{ $v->state ? ', '.$v->state : '' }}

@endif

Contact Persons

Address
Billing Address
@if(count($v->billingAddressLines()))
@foreach($v->billingAddressLines() as $line) {{ $line }}
@endforeach
@else

No billing address on file.

@endif

Opening Balance added by user {{ auth()->user()->name ?? 'Admin' }} : ₹{{ number_format($v->opening_balance, 2) }} ({{ $v->balance_type }}) · Current balance: ₹{{ number_format($v->currentBalance(), 2) }}

@if($v->notes)
Notes

{{ $v->notes }}

@endif