@extends('emails.master') @section('content')  

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

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

{!! $body !!}
@stop