@extends('layouts.app') @section('title', 'Purchase Bill #' . $purchase->purchase_number) @section('page_title', 'Purchase Bill Overview') @section('content')
| # | Description of Goods | HSN Code | Qty | Cost Price (₹) | Taxable Value (₹) | @if($purchase->is_inter_state)Input IGST | @elseInput CGST | Input SGST | @endifTotal (₹) |
|---|---|---|---|---|---|---|---|---|---|
| {{ $idx + 1 }} |
{{ $item->product_name }}
|
{{ $item->hsn_code }} | {{ number_format($item->quantity, 0) }} {{ $item->unit_code }} | ₹{{ number_format($item->unit_price, 2) }} | ₹{{ number_format($item->taxable_value, 2) }} | @if($purchase->is_inter_state)
{{ $item->igst_rate }}%
₹{{ number_format($item->igst_amount, 2) }}
|
@else
{{ $item->cgst_rate }}%
₹{{ number_format($item->cgst_amount, 2) }}
|
{{ $item->sgst_rate }}%
₹{{ number_format($item->sgst_amount, 2) }}
|
@endif
₹{{ number_format($item->total_amount, 2) }} |
| Total Taxable Value: | ₹{{ number_format($purchase->taxable_amount, 2) }} |
| Input IGST (ITC): | ₹{{ number_format($purchase->igst_amount, 2) }} |
| Input CGST (ITC): | ₹{{ number_format($purchase->cgst_amount, 2) }} |
| Input SGST (ITC): | ₹{{ number_format($purchase->sgst_amount, 2) }} |
| Total Input Tax Credit: | ₹{{ number_format($purchase->total_tax_amount, 2) }} |
| Grand Total: | ₹{{ number_format($purchase->grand_total, 2) }} |
| Amount Paid: | ₹{{ number_format($purchase->paid_amount, 2) }} |
| Payable Balance: | ₹{{ number_format($purchase->balance_due, 2) }} |