@extends('layouts.backend') @section('title', 'Secciones') @section('content')
{!! Form::open([ 'method' => 'get' ]) !!}
{!! Form::text('q', request()->q, ['class' => 'form-control', 'placeholder' => 'Buscar secciones']) !!} {!! Form::hidden('page_id', request()->page_id) !!}
{!! Form::close() !!}
@forelse($sections as $section) @empty @endforelse
Nombre Selector Página
@if($section->thumbnail)
Image Description
@endif
{{ $section->post->title ?? 'Sección #'.$section->id }}
{{ $section->selector }} {{ $section->page->post->title }}
No hay resultados
@if(method_exists($sections, 'hasPages')) @endif
@endsection @push('scripts') @endpush