@extends('layouts.app') @section('title', 'My Progress — CareerPath') @push('styles') @endpush @section('content')

My Progress

Track your learning journey and roadmap milestones.

@php // Fetch saved careers as an example of progress tracking $careersInProgress = auth()->user()->savedCareers()->get() ?? []; @endphp @forelse($careersInProgress as $career)
{{ $career->icon ?? '🚀' }}

{{ $career->name }} Roadmap

Complete the milestones to master this career path.

@php $progressPercent = rand(20, 80); @endphp
{{ $progressPercent }}% Completed In Progress
@empty
📊

No active roadmaps

Start tracking your progress by exploring and saving career roadmaps.

View Roadmaps
@endforelse
@endsection