icon added to show it as recurring #1pbthq3
This commit is contained in:
parent
b6f5394bbd
commit
a7369530ff
@ -18,6 +18,10 @@
|
|||||||
<a href="{{ route($routeButtonShow , $item->id) }}">{{ $item->document_number }}</a>
|
<a href="{{ route($routeButtonShow , $item->id) }}">{{ $item->document_number }}</a>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
@if ($item->recurring)
|
||||||
|
<i class="fas fa-redo-alt fa-xs" title="{{ trans('recurring.recurring') }}"></i>
|
||||||
|
@endif
|
||||||
|
|
||||||
@stack('document_number_td_inside_end')
|
@stack('document_number_td_inside_end')
|
||||||
</td>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
|
@ -46,11 +46,16 @@
|
|||||||
@foreach($payments as $item)
|
@foreach($payments as $item)
|
||||||
<tr class="row align-items-center border-top-1">
|
<tr class="row align-items-center border-top-1">
|
||||||
<td class="col-sm-2 col-md-2 col-lg-1 col-xl-1 d-none d-sm-block">{{ Form::bulkActionGroup($item->id, $item->contact->name) }}</td>
|
<td class="col-sm-2 col-md-2 col-lg-1 col-xl-1 d-none d-sm-block">{{ Form::bulkActionGroup($item->id, $item->contact->name) }}</td>
|
||||||
@if ($item->reconciled)
|
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-1 col-xl-1">
|
||||||
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-1 col-xl-1"><a class="col-aka" href="#">@date($item->paid_at)</a></td>
|
@if ($item->reconciled)
|
||||||
@else
|
<a class="col-aka" href="#">@date($item->paid_at)</a>
|
||||||
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-1 col-xl-1"><a class="col-aka" href="{{ route('payments.show', $item->id) }}">@date($item->paid_at)</a></td>
|
@else
|
||||||
@endif
|
<a class="col-aka" href="{{ route('revenues.show', $item->id) }}">@date($item->paid_at)</a>
|
||||||
|
@endif
|
||||||
|
@if ($item->recurring)
|
||||||
|
<i class="fas fa-redo-alt fa-xs" title="{{ trans('recurring.recurring') }}"></i>
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 text-right">@money($item->amount, $item->currency_code, true)</td>
|
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 text-right">@money($item->amount, $item->currency_code, true)</td>
|
||||||
<td class="col-md-2 col-lg-3 col-xl-3 d-none d-md-block text-left">
|
<td class="col-md-2 col-lg-3 col-xl-3 d-none d-md-block text-left">
|
||||||
{{ $item->contact->name }}
|
{{ $item->contact->name }}
|
||||||
|
@ -46,11 +46,16 @@
|
|||||||
@foreach($revenues as $item)
|
@foreach($revenues as $item)
|
||||||
<tr class="row align-items-center border-top-1">
|
<tr class="row align-items-center border-top-1">
|
||||||
<td class="col-sm-2 col-md-2 col-lg-1 col-xl-1 d-none d-sm-block">{{ Form::bulkActionGroup($item->id, $item->contact->name) }}</td>
|
<td class="col-sm-2 col-md-2 col-lg-1 col-xl-1 d-none d-sm-block">{{ Form::bulkActionGroup($item->id, $item->contact->name) }}</td>
|
||||||
@if ($item->reconciled)
|
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-1 col-xl-1">
|
||||||
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-1 col-xl-1"><a class="col-aka" href="#">@date($item->paid_at)</a></td>
|
@if ($item->reconciled)
|
||||||
@else
|
<a class="col-aka" href="#">@date($item->paid_at)</a>
|
||||||
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-1 col-xl-1"><a class="col-aka" href="{{ route('revenues.show', $item->id) }}">@date($item->paid_at)</a></td>
|
@else
|
||||||
@endif
|
<a class="col-aka" href="{{ route('revenues.show', $item->id) }}">@date($item->paid_at)</a>
|
||||||
|
@endif
|
||||||
|
@if ($item->recurring)
|
||||||
|
<i class="fas fa-redo-alt fa-xs" title="{{ trans('recurring.recurring') }}"></i>
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 text-right">@money($item->amount, $item->currency_code, true)</td>
|
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 text-right">@money($item->amount, $item->currency_code, true)</td>
|
||||||
<td class="col-md-2 col-lg-3 col-xl-3 d-none d-md-block text-left">
|
<td class="col-md-2 col-lg-3 col-xl-3 d-none d-md-block text-left">
|
||||||
{{ $item->contact->name }}
|
{{ $item->contact->name }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user