@extends("app") @section("content")

Divisas

JV

@php $months = []; $date = \Carbon\Carbon::today()->startOfMonth(); while(count($months) < 18) { $months[$date->format('Y-m')] = ucfirst($date->formatLocalized('%B %Y')); $date->subMonth(); } @endphp
{!! Form::label('month', 'Mostrar información del mes') !!} {!! Form::select('month', $months, \Carbon\Carbon::today()->format('Y-m'), ['class' => 'form-control']) !!}

Dolares

FECHA SALDO MONEX SALDO SANTANDER 5375 SALDO BANORTE SALDO VECTOR DISPONIBILIDAD INGRESOS SANTANDER 5347 INGRESOS SANTANDER 7067 INGRESOS BANORTE INGRESOS VECTOR INGRESOS INTERCAM TOTAL DE INGRESOS EGRESOS SANTANDER 5347 EGRESOS SANTANDER 7067 EGRESOS BANORTE EGRESOS VECTOR EGRESOS INTERCAM TOTAL DE EGRESOS DISPONIBILIDAD
17/03/18 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00 $248,496,405.00

Euros

FECHA SALDO MONEX SALDO INTERCAM DISPONIBILIDAD INGRESOS MONEX INGRESOS INTERCAM TOTAL DE INGRESOS EGRESOS MONEX EGRESOS INTERCAM TOTAL DE EGRESOS DISPONIBILIDAD
18/03/18 €698,395,309.00 €698,395,309.00 €698,395,309.00 €698,395,309.00 €698,395,309.00 €698,395,309.00 €698,395,309.00 €698,395,309.00 €698,395,309.00 €698,395,309.00
@endsection