{{$client->name}}
@if ($contact->first_name || $contact->last_name) {{ $contact->first_name.' '.$contact->last_name }}@endif @if ($client->address1) {{ $client->address1 }}
@endif @if ($client->address2) {{ $client->address2 }}
@endif @if ($client->getCityState()) {{ $client->getCityState() }}
@endif @if ($client->country) {{ $client->country->name }}
@endif
@if ($contact->email) {!! HTML::mailto($contact->email, $contact->email) !!}
@endif @if ($client->website) {{ $client->present()->websiteLink }}
@endif @if ($contact->phone) {{ $contact->phone }}
@endif
{{ trans('texts.total_invoiced') }}
{{ Utils::formatMoney($client->paid_to_date + $client->balance, $client->currency_id ?: $account->currency_id) }}
{{ trans('texts.paid_to_date') }}
{{ Utils::formatMoney($client->paid_to_date, $client->currency_id ?: $account->currency_id) }}
{{ trans('texts.open_balance') }}
{{ Utils::formatMoney($client->balance, $client->currency_id ?: $account->currency_id) }}