@extends('user') @section('content')

@include('partials.breadcrumb')

Current Balance

{{round(Auth::user()->balance , $basic->decimal)}} {{$basic->currency_sym}}

Total Deposit

{{round($deposit , $basic->decimal)}} {{$basic->currency_sym}}

@foreach($wallets as $wallet)

{{$wallet->mining->name}} Balance

{{$wallet->balance}} {{$wallet->mining->coin_code}}

@endforeach
@stop