@extends('layouts.user') @push('css') @endpush @section('contents')
@if (count($withdraws) == 0)

{{__('No Withdraw Data Found')}}

@else
@foreach($withdraws as $key=>$withdraw) @endforeach
{{ __('Withdraw Date') }} {{ __('Method') }} {{ __('Amount') }} {{ __('Fee') }} {{ __('Status') }} {{ __('Details') }}
{{date('d-M-Y',strtotime($withdraw->created_at))}} {{$withdraw->method}} {{ showNameAmount($withdraw->amount) }} {{ showNameAmount($withdraw->fee) }} {{ucfirst($withdraw->status)}} {{__('Details')}}
{{ $withdraws->links() }} @endif
@endsection @push('js') @endpush