add show footer class..

This commit is contained in:
Cüneyt Şentürk
2021-01-12 14:44:56 +03:00
parent ac3dc327b8
commit 3c2d4c7161
3 changed files with 39 additions and 4 deletions

View File

@ -78,7 +78,7 @@
@endif
@stack('timeline_end')
@stack('invoice_start')
@stack('document_start')
<x-documents.show.document
type="{{ $type }}"
:document="$document"
@ -120,7 +120,7 @@
text-price="{{ $textPrice }}"
text-amount="{{ $textAmount }}"
/>
@stack('invoice_end')
@stack('document_end')
@stack('attachment_start')
@if (!$hideAttachment)
@ -139,10 +139,12 @@
:document="$document"
:histories="$histories"
:transactions="$transactions"
class-footer-histories="{{ $classFooterHistories }}"
hide-footer-histories="{{ $hideFooterHistories }}"
text-histories="{{ $textHistories }}"
text-history-status="{{ $textHistoryStatus }}"
hide-footer-transactions="{{ $hideFooterTransactions }}"
class-footer-transactions="{{ $classFooterTransactions }}"
/>
@endif
@stack('row_footer_end')

View File

@ -1,7 +1,7 @@
<div class="row">
@stack('row_footer_histories_start')
@if (!$hideFooterHistories)
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-6">
<div class="{{ $classFooterHistories }}">
<x-documents.show.histories
type="{{ $type }}"
:document="$document"
@ -15,7 +15,7 @@
@stack('row_footer_transactions_start')
@if (!$hideFooterTransactions)
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-6">
<div class="{{ $classFooterTransactions }}">
<x-documents.show.transactions
type="{{ $type }}"
:document="$document"