@extends('admin.layout') @section('title', 'Dashboard') @section('content')

Dashboard

Total Posts

{{ \App\Models\Post::count() }}

Published Posts

{{ \App\Models\Post::where('status', 'published')->count() }}

Recent Posts

@forelse(\App\Models\Post::latest()->limit(5)->get() as $post)

{{ $post->title }}

{{ $post->created_at->diffForHumans() }}

{{ ucfirst($post->status) }}
@empty

No posts yet

@endforelse
@endsection