{{ settings('buss_address') }}
{{ settings('buss_phone_1') }}, {{ settings('buss_phone_2') }}
GSTIN: {{ settings('buss_gst_no') }}
{{ $sale->patient->name }} | {{ $sale->patient->age }}yrs
{{ $sale->patient->city }}, {{ $sale->patient->gender }}
Date: {{ $sale->sale_date }}
Bill No: #{{ $sale->receipt_no }}
NO NAME
Date: {{ \Carbon\Carbon::parse($sale->sale_date)->format('d-m-Y') }}
Bill No: #{{ $sale->receipt_no }}
| SL. | Particulars | Batch | Expiry | Qty | Tax | MRP | Total |
| {{ $key + 1 }} | {{ $line->item_name }} | {{ $line->batch_no }} | {{ $expiry_date }} | {{ number_format($line->qty) }} | {{ number_format($line->tax_rate) }}% | {{ env('CURRENCY') . number_format($line->mrp / $line->qty, 2) }} | {{ env('CURRENCY') . $line->mrp }} |
| CGST | : | {{ env('CURRENCY') . number_format($sale->tax_amount / 2, 2) }} |
| IGST | : | {{ env('CURRENCY') . number_format($sale->tax_amount / 2, 2) }} |
Payments
| {{ $payment->mode }} | : | {{ $payment->amount }} |
CREDIT BILL
@endif @endif| Sub Total | : | {{ env('CURRENCY') . number_format($sale->sub_total, 2) }} |
| Discount: | : | {{ env('CURRENCY') . number_format($sale->total_dis_amount, 2) }} |
| GST | : | {{ env('CURRENCY') . number_format($sale->tax_amount, 2) }} |
| {{ env('CURRENCY') . number_format($sale->gross_total, 2) }} |
00