@extends('layouts.frontend.app') @section('title', 'CashOut') @push('css') @endpush @section('content')
@include('layouts.frontend.partials.userside')
Minimum Withdaw {{setting('min_with')}} {{ setting('CURRENCY_CODE') }} Minimum Recharge {{setting('min_rec')}} {{ setting('CURRENCY_CODE') }}
@csrf
Method(give personal Number)
Amount
Number
@foreach(App\Models\Withdraw::where('user_id',auth()->id())->get() as $key =>$data) @endforeach
SL Method Amount Number Status
{{++$key}} @php if($data->payment_method==1){ echo 'Bkash'; }elseif($data->payment_method==2){ echo 'Nagad'; }elseif($data->payment_method==3){ echo 'Rocket'; }else{ echo 'Mobile Recharge'; } @endphp {{$data->amount}} {{$data->number}} @if ($data->status == 0) Pending @elseif ($data->status == 1) Complete @elseif ($data->status == 2) Canceled @endif
@endsection @push('js') @endpush