@extends('layouts.main') @section('title', 'Manage Posts – Admin') @section('styles') @endsection @section('content')

MANAGE POSTS

View, edit and delete all posts

@if(session('success'))
{{ session('success') }}
@endif
All Posts ({{ $posts->total() }})
New Post
@if($posts->isEmpty())
No posts yet.
@else @foreach($posts as $post) @endforeach
Title Author Status Date Actions
{{ Str::limit($post->title, 45) }} {{ $post->user->name }} {{ $post->status }} {{ $post->created_at->format('d M Y') }}
@csrf @method('DELETE')
{{ $posts->links() }}
@endif
@endsection