@extends('layouts/layoutMaster') @section('title', 'Posts') @section('content')

Posts

Gestion de contenido editorial para el blog y SEO publico.

Nuevo post
@if (session('status')) @endif
Limpiar
@forelse ($posts as $post) @empty @endforelse
Titulo Slug Estado Publicacion Acciones
{{ $post->title }} {{ $post->slug }} {{ $post->is_published ? 'Publicado' : 'Borrador' }} {{ $post->published_at?->format('d/m/Y H:i') ?? '-' }}
Editar
@csrf @method('DELETE')
No hay posts creados.
@if ($posts->hasPages())
{{ $posts->links() }}
@endif
@endsection