@extends('userlayout') @section('content')

Start request

@csrf
BTC

Cashout History

@foreach($withdraw as $k=>$val) @endforeach
S/n Amount Wallet address Status Type Created Updated
{{++$k}}. {{substr($val->amount,0,9)}}BTC {{$val->details}} @if($val->status==1) Approved @elseif($val->status==0) Pending @elseif($val->status==2) Declined @endif @if($val->type==1) Trading profit @elseif($val->type==2) Account balance @elseif($val->type==3) Referral bonus @endif {{date("Y/m/d h:i:A", strtotime($val->created_at))}} {{date("Y/m/d h:i:A", strtotime($val->updated_at))}}
@stop