@extends('../layout/' . $layout) @section('subhead')
# | Course ID | Time | Course | Category | Shift | Unit | Starting Date | Ending Target | End Time | ST# | Statistics | Actions |
---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ ++$loop->index }} | {{ $course->id }} | {{ $course->time_start }} | {{ $course->title }} | {{ $course->category }} | {{ $course->shift }} | {{ $course->unit }} | {{ $course->start_date }} | {{ $end_date }} | {{ $end_time }} | {{ $sts }} |
@php
$percentage = 0;
$bg = 'warning';
if($course->status == 'finished'){
$percentage = 100;
$bg = 'success';
}
else if($course->status == 'active'){
$percentage = \Carbon\Carbon::parse($course->start_date)?->diffInDays();
if($percentage > 100) $percentage = 100;
$bg = 'primary';
}
@endphp
{{ $course->status }}
{{ $percentage }}%
|
|