@extends('backend.layouts.app') @section('page-title', trans('app.withdraw')) @section('page-heading', trans('app.withdraw')) @section('content')
@include('backend.partials.messages')

@lang('app.withdraw')

@if(isset($transactions) && count($transactions)) @foreach($transactions as $transaction) @endforeach @endif
UserID Username Date RealBalance Amount Request Email Phone Status Action
{{$transaction->user_id}} {{$transaction->username}} {{$transaction->created_at}} {{$transaction->balance}} {{$transaction->summ}} {{$transaction->email}} {{$transaction->phone}} {{$transaction->getStatus()}} @if ($transaction->status == 0) @if( $transaction->system == 'interac') Approve Reject @elseif ($transaction->system == 'crypto') Approve Reject @endif @endif
@stop @section('scripts') @stop