Welcome back, {{ auth()->user->first_name ?? "Admin" }} {{ auth()->user->last_name ?? "User" }}!

Here's what's happening with your website today.

Team Members

{{ number_format($teamsCount) }}

{{ number_format($teamsMonthlyCount) }} new this month

New Subscribers

{{ number_format($newSubscribersCount) }}

@if($subscriberPercentageChange['status'] == "increase" || $subscriberPercentageChange['status'] == "no-change")

{{ $subscriberPercentageChange['description'] }}

@else

{{ $subscriberPercentageChange['description'] }}

@endif

Blog Posts

{{ number_format($postsCount) }}

Last post: {{ timeAgo($lastPostCreatedAt) }}

Case Studies

{{ number_format($caseStudiesCount) }}

{{ number_format($caseStudiesMontlyCount) }} new this month

Recent Activity

View All
@foreach ($recentActivities as $activity)
@if($activity->type == 'post')
@elseif ($activity->type == 'subscriber')
@elseif ($activity->type == 'case_study')
@elseif ($activity->type == 'testimonial')
@elseif ($activity->type == 'privacy_policy')
{{-- or ri-lock-line --}}
@elseif ($activity->type == 'contact')
{{-- or ri-phone-line --}}
@elseif ($activity->type == 'industry')
{{-- or ri-factory-line --}}
@elseif ($activity->type == 'team')
{{-- or ri-user-shared-line --}}
@elseif ($activity->type == 'client')
{{-- or ri-user-heart-line --}}
@elseif ($activity->type == 'category')
{{-- or ri-price-tag-3-line --}}
@elseif ($activity->type == 'case_study')
{{-- or ri-file-list-3-line --}}
@endif

{{ Str::title($activity->title) }}

{{ timeAgo($activity->created_at) }}

{{ $activity->description }}

@endforeach

Recent Blog Posts

View All Posts
@foreach ($recentPosts as $post) @endforeach
Title Author Date Status Actions

{{ $post->title }}

{{ $post->user->first_name . ' ' . $post->user->last_name}}

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

@if($post->status === 1) Published @else Draft @endif

Team Members

View All
@foreach ($teams as $team)
Team Member

{{ $team->first_name . ' ' . $team->last_name }}

{{ $team->position }}

@endforeach