@extends('admin.portal') @section('title', 'Dashboard') @section('header_title', 'Admin Dashboard') @section('content')

Portfolio Intelligence

Loading…

Total Assets
{{ $stats['total_assets'] ?? 0 }}
Published resources
Total Views
{{ $stats['total_views'] ?? 0 }}
Users
Registered Users
{{ $stats['registered_users'] ?? 0 }}
Verified accounts
Subscribers
{{ $stats['total_subscribers'] ?? 0 }}
Newsletter
Top Asset
{{ $stats['top_asset_title'] ?? '-' }}
{{ $stats['top_asset_views'] ?? '-' }} views
Asset Engagement
Top Performing
by views
@forelse($topAssets ?? [] as $index => $asset) @empty
No performance data available
@endforelse
List Of Assets
Recent Leads
@foreach($registeredUsers as $user) @endforeach
Name Company Email Registered
{{ $user->name }} {{ $user->company ?? '-' }} {{ $user->email }} {{ $user->created_at->format('d M Y, H:i') }}
Recent Subscribers
{{ count($subscribers) }} total
@foreach($subscribers as $index => $sub) @endforeach
# Email Subscribed
{{ str_pad($index + 1, 2, '0', STR_PAD_LEFT) }} {{ $sub->created_at->format('d M Y') }} - {{ $sub->created_at->format('H:i') }}
@endsection @push('scripts') @endpush