 
<?php $__env->startSection('content'); ?>
	<div class="row">
		
		<div id="monthly_graph"></div>

		<br><br>

		<br><br>
	</div>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('extras'); ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('bottom'); ?>

	<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
	<script>



	var dataMonthly = [
	            {
	              x: [
		              <?php foreach($monthly_data as $key2 => $value2): ?>
						'<?php echo e(date("F Y", $key2)); ?>',
		              <?php endforeach; ?>
		              ],
	              y: [
						<?php foreach($monthly_data as $key2 => $value2): ?>
						'<?php echo e($value2); ?>',
						<?php endforeach; ?>
		              ],
	              type: 'bar'
	            }
	          ];

	var layoutMonthly = 
				{
					title: 'Monthly Total - Reoccuring',
					yaxis:{hoverformat: '.2f', tickformat: 'd'}
				};

	          Plotly.newPlot('monthly_graph', dataMonthly, layoutMonthly);

		


	</script>








<?php $__env->stopSection(); ?>
<?php echo $__env->make('residential.templates.uadmin', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>