@extends('layouts.app') @section('title', 'Invoice ' . $invoice->invoice_number) @section('page-title', $invoice->invoice_number) @section('content')
{{ $profile->full_address }}
@if($profile->gstin)GSTIN: {{ $profile->gstin }}
@endif{{ $invoice->invoice_number }}
Date: {{ $invoice->invoice_date->format('d M Y') }}
@if($invoice->due_date)Due: {{ $invoice->due_date->format('d M Y') }}
@endif {{ ucfirst($invoice->payment_status) }}Bill To
{{ $invoice->customer_name }}
@if($invoice->billing_address){{ $invoice->billing_address }}
@endif @if($invoice->customer_gstin)GSTIN: {{ $invoice->customer_gstin }}
@endif @if($invoice->customer_phone){{ $invoice->customer_phone }}
@endif @if($invoice->customer_email){{ $invoice->customer_email }}
@endifInvoice Details
| # | Item | HSN/SAC | Qty | Rate | Disc | Taxable | @if($invoice->isInterState())IGST | @elseCGST | SGST | @endifTotal |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->serial_number }} |
{{ $item->item_name }} @if($item->description){{ $item->description }} @endif |
{{ $item->hsn_sac_code ?: '—' }} | {{ $item->quantity }} {{ $item->unit }} | ₹{{ number_format($item->unit_price, 2) }} | {{ $item->discount_percent > 0 ? $item->discount_percent.'%' : '—' }} | ₹{{ number_format($item->taxable_amount, 2) }} | @if($invoice->isInterState()){{ $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) }} |
{{ $invoice->amount_in_words }}
Notes
{{ $invoice->notes }}
Terms & Conditions
{{ $invoice->terms_conditions }}
| Date | Amount | Mode | Reference | Notes |
|---|---|---|---|---|
| {{ $pmt->payment_date->format('d M Y') }} | ₹{{ number_format($pmt->amount, 2) }} | {{ str_replace('_', ' ', $pmt->payment_mode) }} | {{ $pmt->reference_number ?: '—' }} | {{ $pmt->notes ?: '—' }} |