@extends('emails.master') @section('markup') @if ($account->enable_email_markup) @include('emails.partials.client_view_action') @endif @stop @section('content')  

@if ($invoice->due_date) {{ strtoupper(trans('texts.due_by', ['date' => $account->formatDate($invoice->due_date)])) }}
@endif {{ trans("texts.{$entityType}") }} {{ $invoice->invoice_number }}

{{ strtoupper(trans('texts.' . $invoice->present()->balanceDueLabel)) }}:
{{ $account->formatMoney($invoice->getRequestedAmount(), $client) }}

{!! $body !!}
@stop @section('footer')

{{ $account->address1 }} @if ($account->address1 && $account->getCityState()) - @endif {{ $account->getCityState() }} @if ($account->address1 || $account->getCityState())
@endif @if ($account->website) {{ $account->website }} @endif

@stop