@extends('layouts.layout')
@section('content')
| @lang('Account Name') | @lang('Description') | @lang('Quantity') | @lang('Price') | @lang('Sub Total') |
|---|---|---|---|---|
| {{ $invoiceItem->account_name }} | {{ $invoiceItem->description }} | {{ $invoiceItem->quantity }} | {{ $invoiceItem->price }} | {{ $invoiceItem->total }} |
@lang('Insurance'): {{ $invoice->insurance->name ?? 'N/A' }}
| @lang('Total') | {{ $invoice->total }} |
|---|---|
| @lang('Discount') ({{ $invoice->discount_percentage }}%) | {{ $invoice->total_discount }} |
| @lang('Vat') ({{ $invoice->vat_percentage }}%) | {{ $invoice->total_vat }} |
| @lang('Grand Total') | {{ $invoice->grand_total }} |
| @lang('Paid') | {{ $invoice->paid }} |
| @lang('Due') | {{ $invoice->due }} |