@extends('master') @section('content')
Withdraw logs
@foreach($withdraw as $k=>$val) @endforeach
S/N Name Amount Details Status Type Created Updated Action
{{++$k}}. {{$val->user->name}} {{substr($val->amount,0,9)}}BTC {{$val->details}} @if($val->status==0) Unpaid @elseif($val->status==1) Paid @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