@php $profile = getUser(); @endphp @extends($_layout.'master') @section('title', 'Lịch sử yêu cầu') @section('header_title', 'Lịch sử yêu cầu') @section('show_sidebar', 1) @section('content')
@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('',null, 'id') !!} {!! render_sort_url('',null, 'type') !!} {!! render_sort_url('',null, 'amount') !!} {!! render_sort_url('',null, 'created_at') !!} {!! render_sort_url('',null, 'status') !!} @foreach ($paymentRequests as $item) @endforeach
ID Yêu cầu Số điểm Thời gian Trạng thái X
{{$item->id}} {{$item->getTypeText()}} {{nbformat($item->amount)}} {{$item->created_at}} {{$item->getStatusText()}} {{-- --}} @if ($item->isPending()) @endif {{-- --}}
{{$paymentRequests->links($_template.'pagination')}} @else
Không có yêu cầu nào
@endif
@endsection @section('js') @endsection