@props(['estimate' => $estimate])
# | {{ __('ITEM') }} | {{ __('DESCRIPTION') }} | {{ __('UNIT COST') }} | {{ __('QUANTITY') }} | {{ __('TOTAL') }} |
---|---|---|---|---|---|
{{ ++$i}} | {{ $item->name }} | {{ $item->description }} | {{ LocaleSettings('currency_symbol') }} {{ $item->unit_cost }} | {{ $item->quantity }} | {{ LocaleSettings('currency_symbol') }} {{ $item->total }} |
{{ __('Subtotal') }}: | {{ LocaleSettings('currency_symbol') }} {{ $estimate->subtotal }} |
---|---|
{{ __('Tax') }}: ({{ $estimate->tax->percentage }}%) | {{ LocaleSettings('currency_symbol') }}{{ $estimate->tax_amount }} |
{{ __('Discount') }}: ({{ $estimate->discount }}%) | {{ LocaleSettings('currency_symbol') }}{{ $estimate->discount }} |
Total: | {{ LocaleSettings('currency_symbol') }} {{ $estimate->grand_total }} |
{{ $estimate->note }}