@if (isset($category))

{{ $category->name }}

{{ $category->description }}

@else

Tất cả các khóa học

Khám phá các khóa học chất lượng cao tại trung tâm đào tạo của chúng tôi.

@endif
@if ($courses->count() > 0)
@foreach ($courses as $course)
{{ $course->title }} {{ $course->category->name }} @if ($course->start_date) {{ $course->start_date->format('d/m/Y') }} @endif
{{ $course->title }}

{{ Str::limit($course->short_description ?? $course->description, 100) }}

@if ($course->end_registration_date) Hạn đăng ký: {{ $course->end_registration_date->format('d/m/Y') }} @endif
@endforeach
@if (method_exists($courses, 'hasPages') && $courses->hasPages()) @endif @else @endif