@extends('admin.layout') @section('title', 'Dashboard') @section('content')
Total Posts
{{ \App\Models\Post::count() }}
Published Posts
{{ \App\Models\Post::where('status', 'published')->count() }}
{{ $post->title }}
{{ $post->created_at->diffForHumans() }}
No posts yet
@endforelse