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

Admin Dashboard

{{-- STATS CARDS --}}
Total Blogs

{{ $totalBlogs }}

Projects

{{ $totalProjects }}

Contact Messages

{{ $totalContacts }}

{{-- RECENT BLOGS --}}
Recent Blogs
View All
@forelse($recentBlogs as $blog) @empty @endforelse
Title Date
{{ $blog->title }} {{ \Carbon\Carbon::parse($blog->created_at)->format('d M Y') }}
No blogs yet
Recent Contacts
View All
@forelse($recentContacts as $contact) @empty @endforelse
Name Email Message Date
{{ $contact->name }} {{ $contact->email }} {{ \Illuminate\Support\Str::limit($contact->message, 40) }} {{ \Carbon\Carbon::parse($contact->created_at)->format('d M Y') }}
No contact messages yet
@endsection