@extends('admin.layouts.app') @section('title', 'Courses') @section('page-title', 'Courses') @section('content') {{-- Header --}}
Manage all training programs shown on the website
Total
{{ $total }}
Active
{{ $active }}
Featured
{{ $featured }}
| # | Course | Duration | Starting Date | Status | Actions |
|---|---|---|---|---|---|
| {{ $course->sort_order ?: $loop->iteration }} | {{-- Course info --}}
{{-- Thumbnail --}}
@if($course->featured_image && file_exists(public_path('uploads/courses/'.$course->featured_image)))
{{ $course->title }} /courses/{{ $course->slug }} @if($course->certification) {{ $course->certification }} @endif |
{{-- Duration --}}
{{ $course->duration ?? '—' }} | {{-- Starting date --}}{{ $course->formatted_starting_date }} | {{-- Status badges --}}
@if($course->is_active)
Active
@else
Inactive
@endif
@if($course->is_featured)
Featured
@endif
|
{{-- Actions --}}