histories and transaction alignment updated
This commit is contained in:
		@@ -486,20 +486,20 @@
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div id="collapseOne" class="collapse hide" aria-labelledby="headingOne">
 | 
			
		||||
                                <div class="table-responsive">
 | 
			
		||||
                                    <table class="table">
 | 
			
		||||
                                    <table class="table table-hover">
 | 
			
		||||
                                        <thead class="thead-light">
 | 
			
		||||
                                            <tr class="row table-head-line">
 | 
			
		||||
                                                <th class="col-xs-4 col-sm-4">{{ trans('general.date') }}</th>
 | 
			
		||||
                                                <th class="col-xs-4 col-sm-2">{{ trans('general.date') }}</th>
 | 
			
		||||
                                                <th class="col-xs-4 col-sm-4 text-center">{{ trans_choice('general.statuses', 1) }}</th>
 | 
			
		||||
                                                <th class="col-xs-4 col-sm-4 text-left long-texts">{{ trans('general.description') }}</th>
 | 
			
		||||
                                                <th class="col-xs-4 col-sm-6 text-left long-texts">{{ trans('general.description') }}</th>
 | 
			
		||||
                                            </tr>
 | 
			
		||||
                                        </thead>
 | 
			
		||||
                                        <tbody>
 | 
			
		||||
                                            @foreach($bill->histories as $history)
 | 
			
		||||
                                                <tr class="row align-items-center">
 | 
			
		||||
                                                    <td class="col-xs-4 col-sm-4">@date($history->created_at)</td>
 | 
			
		||||
                                                    <td class="col-xs-4 col-sm-2">@date($history->created_at)</td>
 | 
			
		||||
                                                    <td class="col-xs-4 col-sm-4 text-center">{{ trans('bills.statuses.' . $history->status) }}</td>
 | 
			
		||||
                                                    <td class="col-xs-4 col-sm-4 text-left long-texts">{{ $history->description }}</td>
 | 
			
		||||
                                                    <td class="col-xs-4 col-sm-6 text-left long-texts">{{ $history->description }}</td>
 | 
			
		||||
                                                </tr>
 | 
			
		||||
                                            @endforeach
 | 
			
		||||
                                        </tbody>
 | 
			
		||||
@@ -533,10 +533,10 @@
 | 
			
		||||
                                            @if ($bill->transactions->count())
 | 
			
		||||
                                                @foreach($bill->transactions as $transaction)
 | 
			
		||||
                                                    <tr class="row align-items-center border-top-1">
 | 
			
		||||
                                                        <td class="col-xs-4 col-sm-3">@date($item->paid_at)</td>
 | 
			
		||||
                                                        <td class="col-xs-4 col-sm-3">@date($transaction->paid_at)</td>
 | 
			
		||||
                                                        <td class="col-xs-4 col-sm-3">@money($transaction->amount, $transaction->currency_code, true)</td>
 | 
			
		||||
                                                        <td class="col-sm-3 d-none d-sm-block">{{ $transaction->account->name }}</td>
 | 
			
		||||
                                                        <td class="col-xs-4 col-sm-3">
 | 
			
		||||
                                                        <td class="col-xs-4 col-sm-3 py-0">
 | 
			
		||||
                                                            @if ($transaction->reconciled)
 | 
			
		||||
                                                                <button type="button" class="btn btn-secondary btn-sm">
 | 
			
		||||
                                                                    <i class="fa fa-check"></i> {{ trans('reconciliations.reconciled') }}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user