<?php $__env->startSection('content'); ?>
<div id="page-content">
<div class="content-header">
<div class="header-section">
<h1>
<i class="fa fa-recycle"></i>Clonación de Mes<br><small>Recolectora Metropolitana</small>
</h1>
</div>
</div>
<div class="block">
<div class="block-title">
<h2><strong>Clonador de Meses</strong></h2>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label class="col-md-12 control-label">Año Base</label>
<select id="year-base-select" class="form-control" onchange="Peso.yearBase(this)">
<option value="">Selecciona</option>
<?php if(isset($years_base)): ?>
<?php foreach($years_base as $year): ?>
<option value="<?php echo e($year->year); ?>"><?php echo e($year->year); ?></option>
<?php endforeach; ?>
<?php endif; ?>
</select>
</div>
<div class="form-group">
<label class="col-md-12 control-label">Mes Base</label>
<select id="month-base-select" class="form-control">
<option value="">Selecciona</option>
</select>
</div>
</div>
<div class="col-md-offset-2 col-md-4">
<div class="form-group">
<label class="col-md-12 control-label">Año Destino</label>
<select id="year-destinity-select" class="form-control">
<option value="">Selecciona</option>
<?php if(isset($years_destinity)): ?>
<?php foreach($years_destinity as $year): ?>
<option value="<?php echo e($year); ?>"><?php echo e($year); ?></option>
<?php endforeach; ?>
<?php endif; ?>
</select>
</div>
<div class="form-group">
<label class="col-md-12 control-label">Mes Destino</label>
<select id="month-destinity-select" class="form-control">
<option value="">Selecciona</option>
<?php if(isset($months_destinity)): ?>
<?php foreach($months_destinity as $month): ?>
<option value="<?php echo e($month['month_id']); ?>"><?php echo e($month['month']); ?></option>
<?php endforeach; ?>
<?php endif; ?>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
</div>
<div class="col-md-2">
<button id="send-button" type="button" class="btn btn-sm btn-warning btn-block" onclick="Peso.clonador();"><i class="fa fa-refresh"></i> Clonar</button>
</div>
</div>
</div>
</div>
<script src="<?php echo e(URL::To('/js/catalogo_js/peso.js')); ?>"></script>
<script src="<?php echo e(URL::To('/js/pages/sweetalert2.all.min.js')); ?>"></script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>