@extends('adminlte::page') @section('title', 'CONSULTAR PUBLICACIONES') @section('content_header')

CONSULTA PUBLICACIONES

@stop @section('content')
@include('alerts.errors') @include('alerts.success')

@if ( count($data) <= 0 ) @endif @foreach ($data as $item) @endforeach
Fecha Título Autor Estado Acciones
No se han encontrado resultados...
{{ date('d/m/Y', strtotime($item->fecha)) }} {{ $item->titulo }} {{ optional($item->usuario)->name ?? ''}} {{ $item->obtenerNombreEstado() }} @if ( $item->estado != \App\Models\Publicacion::ESTADO_ELIMINADO)
@csrf @method('delete')
@endif
@stop @section('js') @stop