{{ __('Withdraw Details') }}
{{ __('withdraw') }}
{{ __('Name') }} | {{ $withdraw?->user?->name }} |
{{ __('Withdraw Method') }} | {{ $withdraw->method }} |
{{ __('Current Balance') }} | {{ currency($withdraw->current_amount) }} |
{{ __('Withdraw Amount') }} | {{ currency($withdraw->withdraw_amount) }} |
{{ __('Status') }} | @if ($withdraw->status == 'approved') {{ __('Approved') }} @elseif ($withdraw->status == 'rejected') {{ __('Rejected') }} @else {{ __('Pending') }} @endif |
{{ __('Requested Date') }} | {{ $withdraw->created_at->format('Y-m-d') }} |
{{ __('Approved Date') }} | {{ $withdraw->approved_date }} |
{{ __('Account Information') }} | {!! clean(nl2br($withdraw->account_info)) !!} |
@if ($withdraw->status == 'pending')
@endif