all list pages updated same height
This commit is contained in:
@ -12,7 +12,7 @@
|
||||
</thead>
|
||||
<tbody class="thead-light">
|
||||
@foreach($accounts as $item)
|
||||
<tr class="row border-top-1">
|
||||
<tr class="row border-top-1 tr-py">
|
||||
<td class="col-xs-6 col-md-6 text-left">{{ $item->name }}</td>
|
||||
<td class="col-xs-6 col-md-6 text-right">@money($item->balance, $item->currency_code, true)</td>
|
||||
</tr>
|
||||
|
@ -14,7 +14,7 @@
|
||||
<tbody>
|
||||
@if ($transactions->count())
|
||||
@foreach($transactions as $item)
|
||||
<tr class="row border-top-1">
|
||||
<tr class="row border-top-1 tr-py">
|
||||
<td class="col-xs-4 col-md-4 text-left">@date($item->paid_at)</td>
|
||||
<td class="col-xs-4 col-md-4 text-left">{{ $item->category->name }}</td>
|
||||
<td class="col-xs-4 col-md-4 text-right">@money($item->amount, $item->currency_code, true)</td>
|
||||
@ -23,7 +23,7 @@
|
||||
@else
|
||||
<tr class="border-top-1">
|
||||
<td colspan="3">
|
||||
<div class="text-muted" id="datatable-basic_info" role="status" aria-live="polite">
|
||||
<div class="text-muted nr-py" id="datatable-basic_info" role="status" aria-live="polite">
|
||||
{{ trans('general.no_records') }}
|
||||
</div>
|
||||
</td>
|
||||
|
@ -14,7 +14,7 @@
|
||||
<tbody>
|
||||
@if ($transactions->count())
|
||||
@foreach($transactions as $item)
|
||||
<tr class="row border-top-1">
|
||||
<tr class="row border-top-1 tr-py">
|
||||
<td class="col-xs-4 col-md-4 text-left">@date($item->paid_at)</td>
|
||||
<td class="col-xs-4 col-md-4 text-left">{{ $item->category->name }}</td>
|
||||
<td class="col-xs-4 col-md-4 text-right">@money($item->amount, $item->currency_code, true)</td>
|
||||
@ -23,7 +23,7 @@
|
||||
@else
|
||||
<tr class="border-top-1">
|
||||
<td colspan="3">
|
||||
<div class="text-muted" id="datatable-basic_info" role="status" aria-live="polite">
|
||||
<div class="text-muted nr-py" id="datatable-basic_info" role="status" aria-live="polite">
|
||||
{{ trans('general.no_records') }}
|
||||
</div>
|
||||
</td>
|
||||
|
Reference in New Issue
Block a user