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

Divisas

Santander

@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

SANTANDER 5347
SANTANDER 5347
MONEX
INTERCAM

Euros

SANTANDER 5347
SANTANDER 5347
MONEX
INTERCAM
@endsection