@extends('admin.layouts.app') @section('page_title', __('Homepage Builder')) @section('content') @include('mediamanager::image.modal_image') @php $homeService = new \Modules\CMS\Service\HomepageService(); @endphp
{{ __('Homepages') }} >> {{ $page->name }}
    @foreach ($page->components as $component)
  • {{ $component->title ?? optional($component->layout)->name }}
    @include('cms::pieces.header-badges', [ 'layout' => $component->layout, ])
    @include('cms::edit.' . $component->layout->file)
  • @endforeach
@csrf
@endsection @push('styles') @endpush @section('js') @endsection