@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($sections as $section)
{{ $section->title ?? 'Sem título' }}
{{ $section->is_active ? 'Ativo' : 'Inativo' }} {{ $section->section_key }}
@if(!in_array($section->section_key, ['hero', 'features', 'testimonials', 'newsletter']))
@csrf @method('DELETE')
@endif

{{ Str::limit($section->subtitle ?? '', 100) }}

@if($section->bg_color)
BG
@endif @if($section->button_text) Botão: {{ $section->button_text }} @endif Ordem: {{ $section->order }}
@empty

Nenhuma secção definida para a homepage.

Criar primeira secção
@endforelse