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

{{ $title }}

@if(isset($total_amount))

@lang('frontsistema.trade_investment.balance_at'): {{ date('d M Y') }}

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

@endif
@if(isset($from) && isset($to))

@lang('frontsistema.home.from_date'): {{ $from }} @lang('frontsistema.home.to_date'): {{ $to }}

@else

@lang('frontsistema.home.last_ten_records'):

@endif

@if(isset($show_total) && $show_total == 1) @endif @php $total_balance = $transaction_amount; @endphp @if($type == 'trade') @foreach($trade_transactions as $trade_transaction) @php $total_balance = $total_balance + $trade_transaction->monto; @endphp @if(isset($show_total) && $show_total == 1) @endif @endforeach @else @foreach($movimientos_transactions as $movimientos_transaction) @php if($movimientos_transaction->operation_category == 1){ $total_balance = $total_balance + $movimientos_transaction->monto; }else{ $total_balance = $total_balance - $movimientos_transaction->monto; } @endphp @if(isset($show_total) && $show_total == 1) @endif @endforeach @endif
@lang('frontsistema.derivados_etim_cfds_fx.ticket') @lang('frontsistema.derivados_etim_cfds_fx.date') @lang('frontsistema.derivados_etim_cfds_fx.type') @lang('frontsistema.derivados_etim_cfds_fx.item') @lang('frontsistema.derivados_etim_cfds_fx.open_price') @lang('frontsistema.derivados_etim_cfds_fx.close_price') @lang('frontsistema.derivados_etim_cfds_fx.size') @lang('frontsistema.derivados_etim_cfds_fx.net_pl')@lang('frontsistema.derivados_etim_cfds_fx.total_balance')
{{ $trade_transaction->ticket }} {{ date("d-m-Y", strtotime($trade_transaction->fecha)) }} {{ $trade_transaction->type }} {{ $trade_transaction->item }}{{ number_format($trade_transaction->opening_price, 2, '.', ',') }} {{ number_format($trade_transaction->closing_price, 2, '.', ',') }} {{ $trade_transaction->size }} +{{ number_format($trade_transaction->monto, 2, '.', ',') }}{{ number_format($total_balance, 2, '.', ',') }}VER COMPLETO
{{ $movimientos_transaction->ticket }} {{ date("d-m-Y", strtotime($movimientos_transaction->fecha)) }} {{ $movimientos_transaction->type }} {{ $movimientos_transaction->item }} {{ ($movimientos_transaction->operation_category == 1)? '+':'-' }} {{ number_format($movimientos_transaction->monto, 2, '.', ',') }}{{ number_format($total_balance, 2, '.', ',') }}@lang('frontsistema.trade_investment.view_complete')
@endsection @section('customjs') @endsection