{{ @$invoice->contact->first_name.' '.@$invoice->contact->last_name }}
{{ @$invoice->contact->organization }} @if(@$invoice->contact->title) ({{ @$invoice->contact->title }}) @endif
|
@if($invoice->invoice_status_type_id ==5)
@if($subscribed_user->currency->country_currency=='INR')
{!! $subscribed_user->currency->country_currency_unicode !!}
@else
{!! $subscribed_user->currency->country_currency_unicode !!}
@endif{{ number_format(@$invoice['amount_paid'],2) }}
Amount Paid
|
@else
@if($subscribed_user->currency->country_currency=='INR')
{!! $subscribed_user->currency->country_currency_unicode !!}
@else
{!! $subscribed_user->currency->country_currency_unicode !!}
@endif{{ number_format(@$invoice['amount_balance'],2) }}
Amount Due
|
@endif
@if($invoice->invoice_status_type_id ==5 )
@if(@$invoice->timeline->paid_at) {{ date('D, M d, Y', strtotime(@$invoice->timeline->paid_at)) }} @endif
Paid On
|
@else
@if(@$invoice->due_date) {{ date('D, M d, Y', strtotime(@$invoice->due_date)) }} @endif
Due Date
|
@endif
Signature
|
@if($invoice->invoice_status_type_id ==4 )
|
@endif
@if(@$invoice->accept_signature)
{{ @$invoice->accept_signature }}
{{-- Signed & accepted at {{ date('D, M d, Y', strtotime(@$invoice->timeline->paid_at)) }} --}}
Signed & accepted at @if(isset($invoice->timeline->paid_at)){{ \Carbon\Carbon::createFromFormat('Y-m-d H:i:s',$invoice->timeline->paid_at)->format('D, M d, Y') }} @endif
|
@endif
@if(@$invoice->paid_by != 'Online')
Payment Method: {{ @$invoice->paid_by }}
{{-- Last updated on: {{ date('D, M d, Y', strtotime(@$invoice->timeline->paid_at)) }} --}}
Last updated on: @if(isset($invoice->timeline->paid_by)){{ \Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $invoice->timeline->paid_by)->format('D, M d, Y') }} @endif
|
@endif