{{ __('INVOICE') }}
{{--@if ($settings['company_name']){{ $settings['company_name'] }}@endif
@if($settings['company_email']){{$settings['company_email']}}@endif@if($settings['company_telephone']){{$settings['company_telephone']}}@endif
@if ($settings['company_address']){{ $settings['company_address'] }}@endif
@if($settings['company_city']) {{$settings['company_city']}}@endif, {{!empty($settings['company_state'])?\App\Models\Utility::getstate_detailsonly_name($settings['company_country'],$settings['company_state']):'',', '}} @if($settings['company_zipcode']) - {{$settings['company_zipcode']}}@endif
{{!empty($settings['company_country'])?\App\Models\Utility::getcountry_detailsonly_name($settings['company_country']):''}}
@if (!empty($settings['registration_number'])){{ __('Registration Number') }} : {{ $settings['registration_number'] }} @endif
@if (!empty($settings['tax_type']) && !empty($settings['vat_number'])){{ $settings['tax_type'] . ' ' . __('Number') }} : {{ $settings['vat_number'] }}
@endif
| {{ __('Number') }}: | {{ Utility::invoiceNumberFormat($settings, $invoice->invoice_id) }} |
| {{ __('Issue Date') }}: | {{ Utility::dateFormat($settings, $invoice->issue_date) }} |
| {{ __('Due Date') }}: | {{ Utility::dateFormat($settings, $invoice->due_date) }} |
| {{ $field->name }} : | {{ !empty($invoice->customField) ? $invoice->customField[$field->id] : '-' }} |
{{ !empty($customer->billing_name) ? $customer->billing_name : '' }}
{{ !empty($customer->billing_phone) ? $customer->billing_phone : '' }}
{{ !empty($customer->billing_address) ? $customer->billing_address : '' }}
{{ !empty($customer->billing_zip) ? $customer->billing_zip : '' }}
{{ !empty($customer->billing_city) ? $customer->billing_city : '' . ', ' }}
{{-- {{ !empty($customer->billing_state) ? $customer->billing_state : '', ', ' }}
{{ !empty($customer->billing_country) ? $customer->billing_country : '' }} --}}
{{!empty($customer->billing_state)?\App\Models\Utility::getstate_detailsonly_name($customer->billing_country,$customer->billing_state):'',', '}}
{{!empty($customer->billing_country)?\App\Models\Utility::getcountry_detailsonly_name($customer->billing_country):''}}
{{ !empty($customer->shipping_name) ? $customer->shipping_name : '' }}
{{ !empty($customer->shipping_phone) ? $customer->shipping_phone : '' }}
{{ !empty($customer->shipping_address) ? $customer->shipping_address : '' }}
{{ !empty($customer->shipping_zip) ? $customer->shipping_zip : '' }}
{{ !empty($customer->shipping_city) ? $customer->shipping_city : '' . ', ' }}
{{!empty($customer->shipping_state)?\App\Models\Utility::getstate_detailsonly_name($customer->billing_country,$customer->shipping_state):'' .', '}},{{!empty($customer->shipping_country)?\App\Models\Utility::getcountry_detailsonly_name($customer->shipping_country):''}}
{{ __('before tax & discount') }}
{{ $item->name }}
{{ $item->quantity }}
{{ Utility::priceFormat($settings, $item->price) }}
@if (!empty($item->itemTax))
@foreach ($item->itemTax as $taxes)
{{ $taxes['name'] }} ({{ $taxes['rate'] }}) {{ $taxes['price'] }}
@endforeach
@else
-
@endif
{{ $item->discount != 0 ? Utility::priceFormat($settings, $item->discount) : '-' }}
-
-
-
{{ __('Total') }}
{{ $invoice->totalQuantity }}
{{ Utility::priceFormat($settings, $invoice->totalRate) }}
{{ Utility::priceFormat($settings, $invoice->totalTaxPrice) }}
{{ Utility::priceFormat($settings, $invoice->totalDiscount) }}
{{ $settings['footer_title'] }}
{{ $settings['footer_notes'] }}
{{ __('Thank you') }}!