<?php echo e(count($data)); ?>


<br><br>
<?php foreach($data as $ind): ?>
	
	<br>
		<?php foreach($ind as $key => $value): ?>
		
			<?php echo e($key); ?> - 
			<?php if(gettype($value) == 'array'): ?>
				<br>
				<?php foreach($value as $fkey => $fvalue): ?>
				<?php echo e($fkey); ?> -- <?php echo e($fvalue); ?>

				<br>
				<?php endforeach; ?>
			<?php else: ?>
				<?php echo e($value); ?>

			<?php endif; ?>
			<br>
		<?php endforeach; ?>
	<br>
<?php endforeach; ?>