@extends('page.user-dashboard.app') @section('content_dash')

Welcome back, {{ auth()->user()->name }}!

Here's your learning summary for today, {{ now()->format('F j, Y') }}

@if ($courseData->facebook_group) Join Facebook Group @endif
{{ $courseData->title }}
@if ($enroll_status == 'active') Active @elseif ($enroll_status == 'completed') Completed @endif
@if ($courseData->facebook_group) Course Discussion Group @endif

{{ $courseData->title }}

{{ $courseData->short_description }}

{{ __('dashboard.total_lessons') }}

{{ $totalVideoCount }} lessons

{{ __('dashboard.total_quizzes') }}

{{ $totalQuizCount }}

{{ __('dashboard.total_material') }}

{{ $totalMaterialsCount }}

@if (!$isArchive)

{{ __('dashboard.archived_courses') }}

{{ count($archivedCourses) }}
@if (count($archivedCourses) > 0)
@forelse($archivedCourses as $archivedCourse)
{{ $archivedCourse->course->title }}

{{ $archivedCourse->course->title }}

{{ __('dashboard.view_details') }}
@empty @endforelse
@else

{{ __('dashboard.no_archived_courses_found') }}

{{ __('dashboard.no_archived_courses_desc') }}

@endif
@endif

📢 {{ __('dashboard.course_notifications') }}

@forelse ($notifications as $notification)

{{ $notification->title }}

{!! $notification->message !!}
{{ $notification->created_at->diffForHumans() }}
Details
@empty

{{ __('dashboard.no_notifications_found') }}

{{ __('dashboard.no_notifications_desc') }}

@endforelse
@endsection