@if(isset($components))
@foreach($components as $component)
@if(View::exists($component->view))
@include($component->view)
@else
@php
if($component->getComponentType()->getName() == 'named_area') debug('Named component found: ' . $component->code_name);
else debug('View not found: ' . $component->getComponentType()->getName() . ' resource: '. $component->view);
@endphp
@endif
@endforeach
@endif