@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 $withdraw) @endforeach @if(count($withdraws) == 0) @endif
UserName Amount Wallet Status Created At Confirmed At Action
{{ $withdraw->user->username }} {{ $withdraw->amount }} {{ $withdraw->currency }} {{ $withdraw->wallet }} @if(!$withdraw->status) Pending @elseif($withdraw->status==1) Approved @elseif($withdraw->status==2) Rejected @endif {{ $withdraw->created_at }} {{ $withdraw->confirmed_at }} @if(!$withdraw->status) Approve Reject @endif
No diplay data.
@stop @section('scripts') @stop