@extends('layouts.simple.master') @section('title', 'Default') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

Accounts

@endsection @section('breadcrumb-items') @endsection @section('content')
@if ($errors->has('error'))
{{ $errors->first('error') }}
@endif
@if ($liveAccounts) @foreach ($liveAccounts as $account) @endforeach @endif
Name Balance Laverage Action
{{ $account['ctidTraderAccountId'] }} Live {{ $account['name'] }} {{ ucfirst($account['account_type']) }} {{ $account['balance'] }} USD {{ $account['leverage'] }}
@if ($demoAccounts) @foreach ($demoAccounts as $account) @endforeach @endif
Name Balance Laverage Action
{{ $account['traderloginid'] }} {{ $account['name'] }} {{ $account['balance'] }} USD {{ $account['leverage'] }}
@endsection @section('script') @endsection