@if(isset($components))
@foreach($components as $key => $component)
@continue(!is_int($key))
@if(View::exists($component->view))
@include($component->view)
@else
{{ debug('View not found: '. $component->view) }}
@endif
@endforeach
@endif