{{-- Assumes you have a layout file: resources/views/layouts/app.blade.php --}} @extends('layouts.app') @section('content')

Publicaciones

Agregar nueva
{{-- 2. Notas Table --}}
@forelse ($notas as $nota) @empty @endforelse
#ID Titulo Acciones
{{ $nota->id }} {{ $nota->title }} {{-- Action Buttons --}} View Edit {{-- Delete Button (needs a form) --}}
@csrf @method('DELETE')
No se encontraron Publicaciones.
{{-- 3. Pagination Links --}}
{{-- This renders the pagination links and respects the Bootstrap setting from AppServiceProvider --}} {!! $notas->links() !!}
@endsection