@extends('layouts.load') @section('content')
{{ __("User ID#") }} {{$withdraw->user->id}}
{{ __("User Name") }} {{$withdraw->user->name}}
{{ __("Withdraw Amount") }} ${{ round($withdraw->amount, 2) }}
{{ __("Withdraw Charge") }} ${{ round($withdraw->fee, 2) }}
{{ __("Withdraw Process Date") }} {{date('d-M-Y',strtotime($withdraw->created_at))}}
{{ __("Withdraw Status") }} {{ucfirst($withdraw->status)}}
{{ __("User Email") }} {{$withdraw->user->email}}
{{ __("User Phone") }} {{$withdraw->user->phone}}
{{ __("Withdraw Method") }} {{$withdraw->method}}
{{ __("Withdraw Account Details") }} {{$withdraw->details}}
@endsection