@extends('layouts.invoicepayheader') @section('title') {{ __('Invoice') }} @endsection @section('title')
| {{ __('Item') }} | {{ __('Price') }} | {{ __('Tax') }} | ||||
|---|---|---|---|---|---|---|
| {{ $invoiceitem->item }} | {{ App\Models\User::priceFormat($invoiceitem->price) }} | {{ \App\Models\Utility::projectCurrencyFormat($invoice->project_id, $taxes, true) }} | ||||
| {{ $item->item }} | {{ App\Models\User::priceFormat($item->price) }} | {{ App\Models\User::priceFormat($item->tax()) }} | ||||
| {{ __('Sub Total') }} | {{ App\Models\User::priceFormat($invoice->getSubTotal()) }} | |||||
| {{ __('Discount') }} | {{ App\Models\User::priceFormat($invoice->getTotalDiscount()) }} | |||||
| {{ $taxName }} | {{ App\Models\User::priceFormat($taxPrice) }} | |||||
| {{ __('Total') }} | {{ App\Models\User::priceFormat($invoice->getTotal()) }} | |||||