@extends('layouts.app') @section('content')

Posts - {{ $website->name }}

Back to Website
@if(session('success')) @endif @if($errors->any()) @endif
All Posts
{{ $posts->total() }} posts
@if($posts->count() > 0)
@foreach($posts as $post) @endforeach
Title Category Author Status Published Date Views Actions
{{ $post->title }} @if($post->is_featured) Featured @endif
{{ Str::limit($post->excerpt, 60) }}
@if($post->category) {{ $post->category->name }} @else Uncategorized @endif {{ $post->author->name }} @if($post->status === 'published') Published @elseif($post->status === 'scheduled') Scheduled @else Draft @endif @if($post->published_at) {{ $post->published_at->format('M d, Y') }} @else Not published @endif {{ $post->views_count }}
@csrf @method('DELETE')
{{ $posts->links() }}
@else

No posts found. Create your first post to get started!

Create Post
@endif
@endsection