@include('vuefilemanager.others.color-template')

{{ __t('invoice_title') }}

{{ __t('seller') }}:

    @isset($settings->billing_vat_number)
  • {{ __t('seller_vat') }}: {{ $settings->billing_vat_number }}
  • @endisset @isset($settings->billing_name)
  • {{ __t('seller_name') }}: {{ $settings->billing_name }}
  • @endisset @isset($settings->billing_phone_number)
  • {{ __t('seller_phone') }}: {{ $settings->billing_phone_number }}
  • @endisset
    @isset($settings->billing_address)
  • {{ __t('address') }}: {{ $settings->billing_address }}
  • @endisset @isset($settings->billing_city)
  • {{ __t('city') }}: {{ $settings->billing_city }}
  • @endisset @isset($settings->billing_state)
  • {{ __t('state') }}: {{ $settings->billing_state }}
  • @endisset @isset($settings->billing_postal_code)
  • {{ __t('postal_code') }}: {{ $settings->billing_postal_code }}
  • @endisset @isset($settings->billing_country)
  • {{ __t('country') }}: {{ $settings->billing_country }}
  • @endisset

{{ __t('client') }}:

    @isset($invoice->customer_name)
  • {{ __t('name') }}: {{ $invoice->customer_name }}
  • @endisset @isset($invoice->customer_phone)
  • {{ __t('phone') }}: {{ $invoice->customer_phone }}
  • @endisset
    @isset($invoice->customer_address['line1'])
  • {{ __t('address') }}: {{ $invoice->customer_address['line1'] }}
  • @endisset @isset($invoice->customer_address['city'])
  • {{ __t('city') }}: {{ $invoice->customer_address['city'] }}
  • @endisset @isset($invoice->customer_address['state'])
  • {{ __t('state') }}: {{ $invoice->customer_address['state'] }}
  • @endisset @isset($invoice->customer_address['postal_code'])
  • {{ __t('postal_code') }}: {{ $invoice->customer_address['postal_code'] }}
  • @endisset @isset($invoice->customer_address['country'])
  • {{ __t('country') }}: {{ $invoice->customer_address['country'] }}
  • @endisset
{{-- --}}{{--Display invoices--}}{{-- @foreach($invoice->invoiceItems() as $item) @endforeach --}}{{--Display subscription--}}{{-- @foreach($invoice->subscriptions() as $subscription) @endforeach @unless ($invoice->isNotTaxExempt()) @else @foreach ($invoice->taxes() as $tax) @endforeach @endunless
@lang('vuefilemanager.col_description') @lang('vuefilemanager.col_date') @lang('vuefilemanager.col_amount')
{{ $item->description }} {{ $item->total() }}
@lang('vuefilemanager.subscription') ({{ $subscription->quantity }}) {{ $subscription->startDateAsCarbon()->formatLocalized('%d. %B. %Y') }} - {{ $subscription->endDateAsCarbon()->formatLocalized('%d. %B. %Y') }} {{ $subscription->total() }}
@if ($invoice->isTaxExempt()) Tax is exempted @else Tax to be paid on reverse charge basis @endif
{{ $tax->display_name }} {{ $tax->country ? ' - '.$tax->country : '' }} ({{ $tax->percentage }}%{{ $tax->isInclusive() ? ' incl.' : '' }}) {{ $tax->amount() }}
--}} @if ($invoice->hasTax()) @endif @foreach ($invoice->invoiceItems() as $item) @if ($invoice->hasTax()) @endif @endforeach @foreach ($invoice->subscriptions() as $subscription) @if ($invoice->hasTax()) @endif @endforeach @if ($invoice->hasDiscount() || $invoice->hasTax() || $invoice->hasStartingBalance()) @endif @unless ($invoice->isNotTaxExempt()) @else @foreach ($invoice->taxes() as $tax) @endforeach @endunless
{{ __t('col_description') }} {{ __t('col_date') }}{{ __t('vat')}}{{ __t('col_amount') }}
{{ $item->description }} @if ($inclusiveTaxPercentage = $item->inclusiveTaxPercentage()) {{ $inclusiveTaxPercentage }}% incl. @endif @if ($item->hasBothInclusiveAndExclusiveTax()) + @endif @if ($exclusiveTaxPercentage = $item->exclusiveTaxPercentage()) {{ $exclusiveTaxPercentage }}% @endif {{ $item->total() }}
{{ __t('subscription') }} ({{ $subscription->quantity }}) {{ $subscription->startDateAsCarbon()->formatLocalized('%B %e, %Y') }} - {{ $subscription->endDateAsCarbon()->formatLocalized('%B %e, %Y') }} @if ($inclusiveTaxPercentage = $subscription->inclusiveTaxPercentage()) {{ $inclusiveTaxPercentage }}% {{ __t('vat_included') }} @endif @if ($subscription->hasBothInclusiveAndExclusiveTax()) + @endif @if ($exclusiveTaxPercentage = $subscription->exclusiveTaxPercentage()) {{ $exclusiveTaxPercentage }}% @endif {{ $subscription->total() }}
{{ __t('subtotal')}} {{ $invoice->subtotal() }}
@if ($invoice->isTaxExempt()) {{ __t('tax_exempted')}} @else {{ __t('tax_be_paid_reverse') }} @endif
{{ $tax->display_name }} {{ $tax->country ? ' - '.$tax->country : '' }} ({{ $tax->percentage }}%{{ $tax->isInclusive() ? ' ' . __t('vat_included') : '' }}) {{ $tax->amount() }}
{{ __t('total') }} {{ $invoice->total() }}
{{ __t('total') }} {{ $invoice->total() }}