@extends('layouts.load') @section('content')
| {{ __("User ID#") }} | {{$withdraw->user->id}} |
|---|---|
| {{ __("User Name") }} | {{$withdraw->user->name}} |
| {{ __("Withdraw Amount") }} | {{$sign->sign}}{{ round($withdraw->amount * $sign->value , 2) }} |
| {{ __("Withdraw Charge") }} | {{$sign->sign}}{{ round($withdraw->fee * $sign->value , 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}} |