@extends('layout.client') @section('content')
# | {{__('Item')}} | {{__('Qty')}} | {{__('Unit Price')}} | {{__('Tax Rate')}} | {{__('Sub Total')}} |
---|---|---|---|---|---|
{{$key+1}}
|
{{$invoice_item->item_name}}
|
{{$invoice_item->item_qty}} | {{$invoice_item->item_unit_price}} | {{$invoice_item->item_tax_rate}} | {{$invoice_item->item_sub_total}} |
{{__('Sub Total')}}: | {{$invoice->sub_total}} |
---|---|
{{trans('file.Tax')}} | {{$invoice->total_tax}} |
{{trans('file.Discount')}}: | {{$invoice->total_discount}} |
{{trans('file.Total')}}: | {{$invoice->grand_total}} |