@include($_template.'filter.daterange',[
'searchable' => [
'name' => 'Tên',
'email' => 'Email'
],
'sortable' => [
'name' => 'Tên',
'email' => 'email',
'amount' => 'Số điểm',
'status' => 'Trạng thái',
'created_at' => 'Thời gian tạo'
],
])
@if (count($paymentRequests))
{!! render_sort_url('ID | ',null, 'id') !!}
{!! render_sort_url('Yêu cầu | ',null, 'type') !!}
{!! render_sort_url('Số điểm | ',null, 'amount') !!}
{!! render_sort_url('Thời gian | ',null, 'created_at') !!}
{!! render_sort_url('Trạng thái | ',null, 'status') !!}
X |
@foreach ($paymentRequests as $item)
{{$item->id}} |
{{$item->getTypeText()}} |
{{nbformat($item->amount)}} |
{{$item->created_at}} |
{{$item->getStatusText()}} |
{{-- --}}
@if ($item->isPending())
@endif
{{-- --}}
|
@endforeach
{{$paymentRequests->links($_template.'pagination')}}
@else
Không có yêu cầu nào
@endif