@extends('userlayout') @section('content')
@foreach($gateways as $val)

{{$val->name}}

Limit: {{$currency->symbol.number_format($val->minamo).' - '.$currency->symbol.number_format($val->maxamo)}}

Charge: {{$currency->symbol.$val->fixed_charge}} + {{$val->percent_charge}}%

@endforeach

Deposit logs

@foreach($deposits as $k=>$val) @endforeach
S/N Reference ID Amount BTC Method Status Charge Created Updated
{{++$k}}. #{{$val->trx}} {{$currency->symbol.number_format($val->amount)}} {{substr($val->btc_amo,0,9)}}BTC {!!$val->gateway['name']!!} @if($val->status==1) Approved @elseif($val->status==0) Pending @elseif($val->status==2) Declined @endif {{$currency->symbol.number_format($val->charge)}} {{date("Y/m/d h:i:A", strtotime($val->created_at))}} {{date("Y/m/d h:i:A", strtotime($val->updated_at))}}
@stop