@extends('emails.master') @section('markup') @if ($account->emailMarkupEnabled()) @include('emails.partials.client_view_action') @endif @stop @section('content')
@include('emails.partials.account_logo') |
@if ($invoice->due_date)
@if ($invoice->isQuote())
{{ strtoupper(trans('texts.valid_until')) }} {{ $account->formatDate($invoice->due_date) }}
@else
@if ($account->hasCustomLabel('due_date'))
{{ $account->getLabel('due_date') }} {{ $account->formatDate($invoice->due_date) }}
@else
{{ utrans('texts.due_by', ['date' => $account->formatDate($invoice->due_date)]) }}
@endif
@endif
|
@if (! isset($isRefund) || ! $isRefund)
{{ strtoupper(trans('texts.' . $invoice->present()->balanceDueLabel)) }}:
|
{{ $account->present()->address }}
@if ($account->website)
{{ $account->website }}
@endif