@extends('layouts.dashboard') @section('title', 'Dashboard') @section('page-title', 'Dashboard') @section('content') @php $firstName = explode(' ', auth()->user()->name)[0]; $activeCount = $enrollments->where('status', '!=', 'completed')->count(); $certsCount = $certificates->count(); $totalCount = $enrollments->count(); $overallPct = $totalCount > 0 ? round($certsCount / $totalCount * 100) : 0; @endphp {{-- WELCOME BANNER --}}
โฆ Welcome Back
You haven't enrolled in any courses yet.
Browse courses โ
Complete a course to earn your first certificate.