@extends('backend.layouts.app') @section('page-title', trans('app.pyour_withdraw')) @section('page-heading', trans('app.pyour_withdraw')) @section('content')
@include('backend.partials.messages')
@foreach($withdraws as $w) @endforeach @if(count($withdraws) == 0) @endif
UserName Amount Wallet Status Created At Confirmed At Actions
{{ $w->user->username }} {{ $w->amount }} {{ $w->currency }} {{ $w->wallet }} {{ $w->status ? ($w->status == 2 ? 'Approve' : 'Reject') : 'Pending' }} {{ $w->created_at }} {{ $w->confirmed_at ?: '' }} @if($w->status == 'Pending') Approve Reject @endif
No diplay data.
@stop @section('scripts') @stop