diff --git a/resources/views/purchases/bills/show.blade.php b/resources/views/purchases/bills/show.blade.php index c74c3b7fd..9c626a04d 100644 --- a/resources/views/purchases/bills/show.blade.php +++ b/resources/views/purchases/bills/show.blade.php @@ -523,7 +523,7 @@ @stack('row_footer_start')
- @stack('row_footer_history_start') + @stack('row_footer_histories_start')
@@ -534,20 +534,28 @@
+ @stack('row_footer_histories_head_tr_start') - + @stack('row_footer_histories_head_td_start') + - + + @stack('row_footer_histories_head_td_end') + @stack('row_footer_histories_head_tr_end') + @stack('row_footer_histories_body_tr_start') @foreach($bill->histories as $history) - + @stack('row_footer_histories_body_td_start') + - + + @stack('row_footer_histories_body_td_end') @endforeach + @stack('row_footer_histories_body_tr_end')
{{ trans('general.date') }}{{ trans('general.date') }} {{ trans_choice('general.statuses', 1) }}{{ trans('general.description') }}{{ trans('general.description') }}
@date($history->created_at)@date($history->created_at) {{ trans('bills.statuses.' . $history->status) }}{{ $history->description }}{{ $history->description }}
@@ -555,9 +563,9 @@
- @stack('row_footer_history_end') + @stack('row_footer_histories_end') - @stack('row_footer_transaction_start') + @stack('row_footer_transactions_start')
@@ -568,17 +576,23 @@
+ @stack('row_footer_transactions_head_tr_start') + @stack('row_footer_transactions_head_td_start') + @stack('row_footer_transactions_head_td_end') + @stack('row_footer_transactions_head_tr_end') + @stack('row_footer_transactions_body_tr_start') @if ($bill->transactions->count()) @foreach($bill->transactions as $transaction) + @stack('row_footer_transactions_body_td_start') @@ -602,6 +616,7 @@ )) !!} @endif + @stack('row_footer_transactions_body_td_end') @endforeach @else @@ -613,6 +628,7 @@ @endif + @stack('row_footer_transactions_body_tr_end')
{{ trans('general.date') }} {{ trans('general.amount') }} {{ trans_choice('general.accounts', 1) }} {{ trans('general.actions') }}
@date($transaction->paid_at) @money($transaction->amount, $transaction->currency_code, true) {{ $transaction->account->name }}
@@ -620,7 +636,7 @@
- @stack('row_footer_transaction_end') + @stack('row_footer_transactions_end')
@stack('row_footer_end') diff --git a/resources/views/sales/invoices/show.blade.php b/resources/views/sales/invoices/show.blade.php index c96c48deb..a57843b54 100644 --- a/resources/views/sales/invoices/show.blade.php +++ b/resources/views/sales/invoices/show.blade.php @@ -558,7 +558,7 @@ @stack('row_footer_start')
- @stack('row_footer_history_start') + @stack('row_footer_histories_start')
@@ -569,20 +569,28 @@
+ @stack('row_footer_histories_head_tr_start') - + @stack('row_footer_histories_head_start') + - + + @stack('row_footer_histories_head_end') + @stack('row_footer_histories_head_tr_end') + @stack('row_footer_histories_body_tr_start') @foreach($invoice->histories as $history) - + @stack('row_footer_histories_body_td_start') + - + + @stack('row_footer_histories_body_td_end') @endforeach + @stack('row_footer_histories_body_tr_end')
{{ trans('general.date') }}{{ trans('general.date') }} {{ trans_choice('general.statuses', 1) }}{{ trans('general.description') }}{{ trans('general.description') }}
@date($history->created_at)@date($history->created_at) {{ trans('invoices.statuses.' . $history->status) }}{{ $history->description }}{{ $history->description }}
@@ -590,9 +598,9 @@
- @stack('row_footer_history_end') + @stack('row_footer_histories_end') - @stack('row_footer_transaction_start') + @stack('row_footer_transactions_start')
@@ -603,17 +611,23 @@
+ @stack('row_footer_transactions_head_tr_start') + @stack('row_footer_transactions_head_td_start') + @stack('row_footer_transactions_head_td_end') + @stack('row_footer_transactions_head_tr_end') + @stack('row_footer_transactions_body_tr_start') @if ($invoice->transactions->count()) @foreach($invoice->transactions as $transaction) + @stack('row_footer_transactions_body_td_start') @@ -637,6 +651,7 @@ )) !!} @endif + @stack('row_footer_transactions_body_td_end') @endforeach @else @@ -648,6 +663,7 @@ @endif + @stack('row_footer_transactions_body_tr_end')
{{ trans('general.date') }} {{ trans('general.amount') }} {{ trans_choice('general.accounts', 1) }} {{ trans('general.actions') }}
@date($transaction->paid_at) @money($transaction->amount, $transaction->currency_code, true) {{ $transaction->account->name }}
@@ -655,7 +671,7 @@
- @stack('row_footer_transaction_end') + @stack('row_footer_transactions_end')
@stack('row_footer_end')