From 966694ecc91ac748e764656b7ef5e0d82801ba01 Mon Sep 17 00:00:00 2001 From: batuhanbas Date: Thu, 23 Jan 2020 15:26:41 +0300 Subject: [PATCH] histories and transaction alignment updated --- resources/views/purchases/bills/show.blade.php | 14 +++++++------- resources/views/sales/invoices/show.blade.php | 18 +++++++++--------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/resources/views/purchases/bills/show.blade.php b/resources/views/purchases/bills/show.blade.php index 7fc7f921b..3e40f408e 100644 --- a/resources/views/purchases/bills/show.blade.php +++ b/resources/views/purchases/bills/show.blade.php @@ -486,20 +486,20 @@
- +
- + - + @foreach($bill->histories as $history) - + - + @endforeach @@ -533,10 +533,10 @@ @if ($bill->transactions->count()) @foreach($bill->transactions as $transaction) - + - @@ -532,20 +532,20 @@
-
{{ 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 }}
@date($item->paid_at)@date($transaction->paid_at) @money($transaction->amount, $transaction->currency_code, true) {{ $transaction->account->name }} + @if ($transaction->reconciled)
@stack('address_input_start') - {!! nl2br($invoice->contact_address) !!} + {!! nl2br($invoice->contact_address) !!} @stack('address_input_end')
+
- + - + @foreach($invoice->histories as $history) - + - + @endforeach @@ -582,10 +582,10 @@ -
{{ 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 }}
@date($transaction->paid_at) @money($transaction->amount, $transaction->currency_code, true) {{ $transaction->account->name }} + @if ($transaction->reconciled) - @else {!! Form::open([