@extends('layouts.layout-horizontal') @section('title', 'Proforma Invoice - ' . $proforma->proforma_no) @section('content')
{{ $proforma->party->name ?? '-' }}
{{ $proforma->invoice_date->format('d-M-Y') }}
{{ $proforma->proforma_no }}
{{ ucfirst($proforma->bill_type) }}
@if($proforma->status === 'converted') Converted @else Open @endif
| # | Product | HSN | Unit | Qty | Rate | Tax % | Amount | Tax | Total |
|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->product->name ?? '-' }} | {{ $item->hsn }} | {{ $item->unit }} | {{ indian_number($item->qty, 3) }} | {{ indian_number($item->rate, 2) }} | {{ $item->tax_percent }}% | {{ indian_number($item->line_amount, 2) }} | {{ indian_number($item->line_tax_amount, 2) }} | {{ indian_number($item->line_total, 2) }} |
| Sub Total | {{ indian_number($proforma->amount_total, 2) }} | {{ indian_number($proforma->tax_total, 2) }} | {{ indian_number($proforma->grand_total, 2) }} | ||||||