@extends('adminlte::page') @section('title', 'Secciones Home') @section('content_header')

Secciones Home

@stop @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@csrf {{-- TABS SECTION --}}

Tabs (Repeater)

@if($homeSection->tabs) @foreach($homeSection->tabs as $index => $tab) @include('admin.home_section.tab_item', ['index' => $index, 'tab' => $tab]) @endforeach @endif
{{-- DESTACADO SECTION --}}

Destacado

@include('admin.partials.translatable-input', ['label' => 'Título Destacado', 'name' => 'destacado_title', 'model' => $homeSection])
@if($homeSection->destacado_image)
@endif
@foreach(config('app.locales') as $locale)
@endforeach
{{-- TEMPLATE FOR NEW TAB --}} @endsection @section('css') @stop @section('js') @stop