@include('training.partials.alerts')
| Code |
Topic Name |
Category |
Completion Method |
Recurrence |
Status |
Actions |
@forelse($topics as $t)
| {{ $t->topic_code }} |
{{ $t->topic_name }} |
{{ $t->category?->category_name ?? '-' }} |
{{ $t->completion_method }}
@if(in_array($t->completion_method, ['QUIZ','BOTH']))
({{ $t->passing_score }}%)
@endif
|
{{ $t->recurrence_months ? 'Every ' . $t->recurrence_months . ' mo' : 'One-time' }} |
@if($t->trashed())
Deleted
@else
@endif
|
@if($t->trashed())
@else
@endif
|
@empty
|
No topics found
|
@endforelse
{{ $topics->links() }}