2020-12-24 01:28:38 +03:00
|
|
|
<div class="row" style="font-size: inherit !important">
|
2020-12-25 12:16:57 +03:00
|
|
|
@stack('header_status_start')
|
|
|
|
@if (!$hideHeaderStatus)
|
|
|
|
<div class="{{ $classHeaderStatus }}">
|
|
|
|
{{ trans_choice('general.statuses', 1) }}
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<strong>
|
|
|
|
<span class="float-left">
|
|
|
|
<span class="badge badge-{{ $document->status_label }}">
|
|
|
|
{{ trans($textHistoryStatus . $document->status) }}
|
|
|
|
</span>
|
2020-12-24 01:28:38 +03:00
|
|
|
</span>
|
2020-12-25 12:16:57 +03:00
|
|
|
</strong>
|
|
|
|
<br><br>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@stack('header_status_end')
|
2020-12-24 01:28:38 +03:00
|
|
|
|
2020-12-25 12:16:57 +03:00
|
|
|
@stack('header_contact_start')
|
|
|
|
@if (!$hideHeaderContact)
|
|
|
|
<div class="{{ $classHeaderContact }}">
|
|
|
|
{{ trans_choice($textHeaderContact, 1) }}
|
|
|
|
<br>
|
2020-12-24 01:28:38 +03:00
|
|
|
|
2020-12-25 12:16:57 +03:00
|
|
|
<strong>
|
|
|
|
<span class="float-left">
|
|
|
|
{{ $document->contact_name }}
|
|
|
|
</span>
|
|
|
|
</strong>
|
|
|
|
<br><br>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@stack('header_contact_end')
|
2020-12-24 01:28:38 +03:00
|
|
|
|
2020-12-25 12:16:57 +03:00
|
|
|
@stack('header_amount_start')
|
|
|
|
@if (!$hideHeaderAmount)
|
|
|
|
<div class="{{ $classHeaderAmount }}">
|
|
|
|
{{ trans($textHeaderAmount) }}
|
|
|
|
<br>
|
2020-12-24 01:28:38 +03:00
|
|
|
|
2020-12-25 12:16:57 +03:00
|
|
|
<strong>
|
|
|
|
<span class="float-left">
|
|
|
|
@money($document->amount - $document->paid, $document->currency_code, true)
|
|
|
|
</span>
|
|
|
|
</strong>
|
|
|
|
<br><br>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@stack('header_amount_end')
|
2020-12-24 01:28:38 +03:00
|
|
|
|
2020-12-25 12:16:57 +03:00
|
|
|
@stack('header_due_at_start')
|
|
|
|
@if (!$hideHeaderDueAt)
|
|
|
|
<div class="{{ $classHeaderDueAt }}">
|
|
|
|
{{ trans($textHeaderDueAt) }}
|
|
|
|
<br>
|
2020-12-24 01:28:38 +03:00
|
|
|
|
2020-12-25 12:16:57 +03:00
|
|
|
<strong>
|
|
|
|
<span class="float-left">
|
|
|
|
@date($document->due_at)
|
|
|
|
</span>
|
|
|
|
</strong>
|
|
|
|
<br><br>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@stack('header_due_at_end')
|
|
|
|
</div>
|