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