@php $user = auth()->user(); $portfolioCount = $user->portfolios()->count(); $resumeCount = $user->resumes()->count(); $unreadCount = $user->unreadNotifications()->count(); $supportCount = method_exists($user, 'supportTickets') ? $user->supportTickets()->count() : 0; $completionScore = min(100, ($portfolioCount > 0 ? 35 : 0) + ($resumeCount > 0 ? 35 : 0) + ($unreadCount === 0 ? 15 : 8) + ($supportCount === 0 ? 15 : 8)); @endphp Welcome back, {{ $user->name }}

Professional Control Center

Your resume and portfolio command center

Manage assets, monitor account activity, and stay ready for client or employer opportunities with a clean professional workflow.

Portfolio Builder

{{ $portfolioCount }} total

Create and publish professional portfolios with focused service or role positioning.

Resume Builder

{{ $resumeCount }} total

Build ATS-ready resumes with role-specific variants for better application conversion.

Support Operations

{{ $supportCount }} open

Track support requests, collaborate with your team, and keep client communication organized.

Account Alerts

{{ $unreadCount }} unread

Stay updated with platform activity, billing notices, and workflow-critical updates.

Professional Readiness Checklist

Weekly
  • Keep at least one polished resume ready for immediate applications.
  • Publish one portfolio per target service or role niche.
  • Review all unread notifications every working day.
  • Close resolved support tickets to keep operations clean.
@if($user->isAdmin())

Admin Operations

Restricted
@endif @if($user->isStaff() && !$user->isAdmin())

Staff Operations

Permission Based
@if($user->hasStaffPermission('view_reports'))

Reports

Review assigned report dashboards and trends.

@endif @if($user->hasStaffPermission('support_tickets'))

Support

Manage support tickets and collaborate with users.

@endif @if($user->hasStaffPermission('moderate_portfolios'))

Moderation

Review reported content and enforce moderation policy.

@endif
@endif