@if(isset($components))
@foreach($components as $component)
@if(View::exists($component->view))
@include($component->view, ['componentAreaName' => 'component-area-' . uuid_create()])
@else
{{ debug('View not found: '. $component->view) }}
@endif
@endforeach
@endif