@extends('admin.layouts.app') @section('title', 'Listagem dos posts') @section('content') Cadastrar Post

Posts

@if (session('message'))
{{ session('message') }}
@endif
@csrf
@foreach ($posts as $post) image}") }}" alt="{{ $post->title }}" style="max-width:100px;">

{{ $post->title }} - Ler - Editar

@endforeach
@if (isset($filters)) {{ $posts->appends($filters)->links() }} @else {{ $posts->links() }} @endif @endsection