@extends('layouts.front_vertical_menu') @section('customcss') @endsection @section('pagecontent')
@lang('frontsistema.home.from_date'): {{ $from }} @lang('frontsistema.home.to_date'): {{ $to }}
@else@lang('frontsistema.home.last_ten_records'):
@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') | @if(isset($show_total) && $show_total == 1)@lang('frontsistema.derivados_etim_cfds_fx.total_balance') | @endif|
|---|---|---|---|---|---|---|---|---|---|
| {{ $trade_transaction->ticket }} | {{ date("d-m-Y", strtotime($trade_transaction->fecha)) }} | {{ $trade_transaction->type }} | {{ $trade_transaction->item }} | @php $total_balance = $total_balance + $trade_transaction->monto; @endphp{{ number_format($trade_transaction->opening_price, 2, '.', ',') }} | {{ number_format($trade_transaction->closing_price, 2, '.', ',') }} | {{ $trade_transaction->size }} | +{{ number_format($trade_transaction->monto, 2, '.', ',') }} | @if(isset($show_total) && $show_total == 1){{ number_format($total_balance, 2, '.', ',') }} | @endifVER COMPLETO |
| {{ $movimientos_transaction->ticket }} | {{ date("d-m-Y", strtotime($movimientos_transaction->fecha)) }} | {{ $movimientos_transaction->type }} | {{ $movimientos_transaction->item }} | @php if($movimientos_transaction->operation_category == 1){ $total_balance = $total_balance + $movimientos_transaction->monto; }else{ $total_balance = $total_balance - $movimientos_transaction->monto; } @endphp{{ ($movimientos_transaction->operation_category == 1)? '+':'-' }} {{ number_format($movimientos_transaction->monto, 2, '.', ',') }} | @if(isset($show_total) && $show_total == 1){{ number_format($total_balance, 2, '.', ',') }} | @endif@lang('frontsistema.trade_investment.view_complete') |