@extends('layouts.admin') @section('title', 'Dashboard - Admin Panel') @section('page-title', 'Dashboard') @section('content')

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

Total Posts

{{ \App\Models\Post::published()->count() }}

Published Posts

{{ \App\Models\Post::whereNull('published_at')->count() }}

Draft Posts

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

Total Users

Recent Posts
@if(\App\Models\Post::count() > 0)
@foreach(\App\Models\Post::latest()->take(5)->get() as $post) @endforeach
Title Status Created Actions
{{ Str::limit($post->title, 40) }} {{ $post->published_at ? 'Published' : 'Draft' }} {{ $post->created_at->format('M d, Y') }}
@else

No posts created yet. Create your first post.

@endif
@endsection