@extends('layouts.app-general') @section('content')

SECCIONES

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
LISTADO DE SESSIONES {{ $sections->total() }}
@foreach($sections as $section) @endforeach
TITULO ESTADO CREACIÓN
{{ $section->name }} @if($section->status==1) Activada @else Desactivada @endif {{ $section->created_at }}
@if(count($sections)==0)
No hay registros
@endif
@include('admin.common.pagination.default', ['paginator' => $sections])
@endsection