2020-12-24 01:28:38 +03:00
|
|
|
<div class="row">
|
|
|
|
@stack('row_footer_histories_start')
|
|
|
|
@if (!$hideFooterHistories)
|
2021-01-12 14:44:56 +03:00
|
|
|
<div class="{{ $classFooterHistories }}">
|
2020-12-24 01:28:38 +03:00
|
|
|
<x-documents.show.histories
|
|
|
|
type="{{ $type }}"
|
|
|
|
:document="$document"
|
|
|
|
:histories="$histories"
|
|
|
|
text-histories="{{ $textHistories }}"
|
|
|
|
text-history-status="{{ $textHistoryStatus }}"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@stack('row_footer_histories_end')
|
|
|
|
|
|
|
|
@stack('row_footer_transactions_start')
|
|
|
|
@if (!$hideFooterTransactions)
|
2021-01-12 14:44:56 +03:00
|
|
|
<div class="{{ $classFooterTransactions }}">
|
2020-12-24 01:28:38 +03:00
|
|
|
<x-documents.show.transactions
|
|
|
|
type="{{ $type }}"
|
|
|
|
:document="$document"
|
|
|
|
:transactions="$transactions"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@stack('row_footer_transactions_end')
|
|
|
|
</div>
|