@extends('template.coin.layouts.base') @section('title', __('Dashboard')) @section('css') @endsection @section('content')
Account Wallet

Wallet

Here is the list of your wallets!

Main Wallet
@if(Session::has('errmessage'))

{{Session::get('errmessage')}}

@endif
@if($wallets->isNotEmpty()) @foreach($wallets as $wallet)
{{$wallet->dwallet()->wallet_name}} ({{$wallet->sym}})
{{__format_number($wallet->balance)}}{{$user->user_curr()}}
{{__format_number($wallet->get_sys_balance())}}{{system_settings('currency')}}
Locked Amount
{{__format_number($wallet->locked_balance)}} {{$user->user_curr()}}
@endforeach @endif
@if(allow_user_investment_account())
Investment Wallet
@if($wallets->isNotEmpty()) @foreach($wallets as $wallet)
{{$wallet->dwallet()->wallet_name}} ({{$wallet->sym}})
{{__format_number($wallet->inv_balance)}}{{$user->user_curr()}}
{{__format_number($wallet->get_sys_inv_balance())}}{{system_settings('currency')}}
Locked Amount
{{__format_number($wallet->locked_inv_balance)}} {{$user->user_curr()}}
@endforeach @endif
@endif
@endsection