@extends('layouts.master') @section('title') Inicio @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Inicio @endslot @slot('li_2') Panel Administrador @endslot @slot('title') Anuncios @endslot @endcomponent
@forelse ($anuncios as $anuncio) @empty @endforelse
# Título Contenido Plan de Estudio Estado Acciones
{{ $anuncio->id_anuncio }} {{ $anuncio->titulo }} {{ Str::limit(strip_tags($anuncio->contenido), 60) }} {{ $anuncio->planEstudio->nombre ?? '-' }} @if($anuncio->activo) Activo @else Inactivo @endif
No se encontraron anuncios.
@endsection @section('script') @endsection