@props(['estimate' => $estimate])
@php $company = app(\App\Settings\CompanySettings::class); @endphp
  • {{ $company->name }}
  • {{ $company->address }}
  • {{ !empty($company->city) ? $company->city.' , ':'' }}{{ !empty($company->province) ? $company->province.' ,' :''.$company->postal_code}}

{{ __('Estimate') }} {{ $estimate->est_id }}

  • {{ __('Create Date') }}: {{ format_date($estimate->created_at) }}
  • {{ __('Start Date') }}: {{ format_date($estimate->startDate) }}
  • {{ __('Expiry date') }}: {{ format_date($estimate->expiryDate) }}
{{ __('Estimate to') }}:
@php $client = $estimate->client; @endphp
  • {{ $client->fullname }}
  • {{ $client->address }}
  • {!! $estimate->client_address !!}
  • {!! $estimate->billing_address !!}
  • {{ $client->phoneNumber }}
  • {{ $client->email }}
@if (!empty($estimate->items) && $estimate->items->count() > 0) @foreach ($estimate->items as $i => $item) @endforeach @endif
# {{ __('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 }}
{{ __('Other information') }}

{{ $estimate->note }}