@php $profile = getUser(); @endphp @extends($_layout.'master') @section('title', 'Danh sách Yêu cầu thanh toán') @section('header_title', 'Yêu cầu thanh toán') @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, 'name') !!} {!! render_sort_url('',null, 'email') !!} {!! 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 Tên Email Yêu cầu Số điểm Thời gian Trạng thái X
{{$item->id}} Tên: {{$item->name}}
Email: {{$item->email}}
Trạng thái: {{$item->getStatusText()}}
{{$item->type_text}} {{nbformat($item->amount_text)}} {{$item->created_time}} {{$item->status_text}} {{-- --}} @if ($item->isPending()) @elseif($item->isType(['deposit', 'withdraw']) && ($item->isDeclined() || ($item->isApproved() && $item->canUndo('approve')))) @endif {{-- --}}
{{$paymentRequests->links($_template.'pagination')}} @else
Không có yêu cầu nào
@endif
@endsection @section('js') @endsection