@if(isset($components))
@foreach($components as $componentKey => $component)
@if($component->isCodeNamed)
{{ debug("Component skipped because it's marked with a code name: '" . $component->code_name . "'") }}
@php continue; @endphp
@endif
@if(View::exists($component->view))
@include($component->view)
@else
{{ debug('View not found: '. $component->view) }}
@endif
@endforeach
@endif