component show header add stack

This commit is contained in:
Cüneyt Şentürk 2020-12-25 12:16:57 +03:00
parent 7c126169c8
commit 7b126834ff

View File

@ -1,4 +1,5 @@
<div class="row" style="font-size: inherit !important">
@stack('header_status_start')
@if (!$hideHeaderStatus)
<div class="{{ $classHeaderStatus }}">
{{ trans_choice('general.statuses', 1) }}
@ -14,7 +15,9 @@
<br><br>
</div>
@endif
@stack('header_status_end')
@stack('header_contact_start')
@if (!$hideHeaderContact)
<div class="{{ $classHeaderContact }}">
{{ trans_choice($textHeaderContact, 1) }}
@ -28,7 +31,9 @@
<br><br>
</div>
@endif
@stack('header_contact_end')
@stack('header_amount_start')
@if (!$hideHeaderAmount)
<div class="{{ $classHeaderAmount }}">
{{ trans($textHeaderAmount) }}
@ -42,7 +47,9 @@
<br><br>
</div>
@endif
@stack('header_amount_end')
@stack('header_due_at_start')
@if (!$hideHeaderDueAt)
<div class="{{ $classHeaderDueAt }}">
{{ trans($textHeaderDueAt) }}
@ -56,4 +63,5 @@
<br><br>
</div>
@endif
@stack('header_due_at_end')
</div>