@extends('layouts.front_vertical_menu') @section('customcss') @endsection @section('pagecontent')

@lang('frontsistema.home.welcome_txt')


@lang('frontsistema.home.account_number')


{{ $account->account_number }}

@lang('frontsistema.home.consolidated_balance')

@php $consolidated_balance = 0; foreach($account_instruments as $account_instrument) { if(isset($trade_tradeinvestment_movement[$account_instrument->id])) { $consolidated_balance = $consolidated_balance + $trade_tradeinvestment_movement[$account_instrument->id]; } } @endphp

${{ number_format($consolidated_balance,2,'.',',') }}

@lang('frontsistema.home.resumen_operativo') @lang('frontsistema.home.balance')
@lang('frontsistema.home.transaction') ${{ number_format($trade_n_tradeinvestment_amt, 2, '.', ',') }}
@lang('frontsistema.home.movement'): @lang('frontsistema.home.by_date') @lang('frontsistema.home.last_ten') @lang('frontsistema.home.year_of_account')
@lang('frontsistema.home.active_investment') ${{ number_format($financiamientos_activos_amt, 2, '.', ',') }}
@lang('frontsistema.home.movement'): @lang('frontsistema.home.by_date') @lang('frontsistema.home.last_ten') @lang('frontsistema.home.year_of_account')
@lang('frontsistema.home.deposits') ${{ (isset($movement_operation_type_amt['1'])) ? number_format(($movement_operation_type_amt['1']), 2, '.', ',') : number_format(0,2) }}
@lang('frontsistema.home.movement'): @lang('frontsistema.home.by_date') @lang('frontsistema.home.last_ten') @lang('frontsistema.home.year_of_account')
@lang('frontsistema.home.retreats') ${{ (isset($movement_operation_type_amt['2'])) ? number_format($movement_operation_type_amt['2'], 2, '.', ',') : number_format(0,2) }}
@lang('frontsistema.home.movement'): @lang('frontsistema.home.by_date') @lang('frontsistema.home.last_ten') @lang('frontsistema.home.year_of_account')
@lang('frontsistema.home.commission_n_expenses') ${{ number_format($comisiones_y_gastos, 2, '.', ',') }}
@lang('frontsistema.home.movement'): @lang('frontsistema.home.by_date') @lang('frontsistema.home.last_ten') @lang('frontsistema.home.year_of_account')

@foreach($account_instruments as $account_instrument) @endforeach
@lang('frontsistema.home.resumen_for_instrumento') @lang('frontsistema.home.balance')
{{ $account_instrument->instrument }} ${{ (isset($trade_tradeinvestment_movement[$account_instrument->id])) ? number_format($trade_tradeinvestment_movement[$account_instrument->id], 2, '.', ',') : number_format(0,2) }}
@lang('frontsistema.home.movement'): @lang('frontsistema.home.by_date') @lang('frontsistema.home.last_ten') @lang('frontsistema.home.year_of_account')
@endsection @section('customjs') @endsection