Logo
@include('Header')
Main Image


Profile

@if($user)
@else

User not found!

@endif @if(isset($coursesInfo) && count($coursesInfo) > 0)
@foreach($coursesInfo as $course) @endforeach
Course Image Name Progress Status Start Date Expiration time
Course Image {{ $course->CourseName }} {{ $course->ProgressPercentage }}% {{ $course->Status }} {{ \Carbon\Carbon::parse($course->StartDate)->toFormattedDateString() }} {{ $course->ExpiredDate ? \Carbon\Carbon::parse($course->ExpiredDate)->toFormattedDateString() : 'No expiration date' }}
@else

No courses found!

@endif



@include('Footer')