@extends('layouts.appNew') @section('content')

Dashboard

@if(\Session::has('success'))

{{\Session::get('success')}}

@endif

Account All Account

@foreach($account as $row)
@if(!empty($row->platform_id)) @if($row->platform_id == 1) @elseif($row->platform_id == 2) @endif @endif
@if(!empty($row->platform_id)) {{$row->id}} @endif
@if(!empty($row->account_type)) @if($row->account_type == 1) Real @elseif($row->account_type == 2) Demo @endif @endif
@if(!empty($row->account_balance) || $row->account_balance == 0) {{ $row->account_balance }}.00 @endif
@if($row->account_type == 1) @else @endif
@endforeach
@endsection