@extends('admin.layout') @section('title', 'Dashboard') @push('styles') @endpush @section('actions')
@endsection @section('content')

Welcome Back, {{ auth()->user()->name }}

{{ $counts['contacts'] ?? 0 }} pesan masuk • {{ $counts['comments'] ?? 0 }} komentar • {{ $counts['subscribes'] ?? 0 }} subscribers

Users

{{ $counts['users'] ?? 0 }}

5.62%from last month

elemnt-01

Posts

{{ $counts['posts'] ?? 0 }}

12%from last month

elemnt-02

Comments

{{ $counts['comments'] ?? 0 }}

6%from last month

elemnt-03

Subscribers

{{ $counts['subscribes'] ?? 0 }}

16%from last month

elemnt-04
{{ number_format((int) ($postsChartTotal ?? 0)) }} Post

{{ abs((int) ($monthlyPostDelta ?? 0)) }} {{ ($monthlyPostDelta ?? 0) >= 0 ? 'dibanding bulan lalu' : 'lebih rendah dari bulan lalu' }}

Bulan ini: {{ number_format((int) ($currentMonthPosts ?? 0)) }}

@forelse ($topCategories as $category)

{{ $category->title }}

{{ $topCategoryTotalPosts > 0 ? round(($category->posts_count / $topCategoryTotalPosts) * 100) : 0 }}%

@empty
Belum ada data kategori.
@endforelse
Recent Artikel
View All
@forelse ($recentPosts as $post)
{{ $post->title }}
{{ $post->category?->title ?? 'Tanpa Kategori' }} {{ $post->active ? 'Published' : 'Draft' }}
@empty
Belum ada artikel terbaru.
@endforelse
@endsection @push('scripts') @endpush