@extends('layouts.dashboard') @section('title', 'Dashboard') @section('content')
Welcome back, {{ auth()->user()?->full_name ?? 'Admin' }}! Here's what's happening with your portfolio.
Total Posts
{{ $totalPosts ?? 0 }}
Comments
{{ $totalComments ?? 0 }}
Total Likes
{{ $totalLikes ?? 0 }}
Tags
{{ $totalTags ?? 0 }}
{{ Str::limit(strip_tags($post->content), 100) }}
No posts yet. Create your first post
{{ $comment->user_name ?? $comment->user?->full_name ?? 'Anonymous' }}
{{ Str::limit($comment->body, 80) }}
On: {{ Str::limit($comment->post?->title ?? 'Unknown Post', 30) }}
No comments yet
No tags created yet
@endforelse