@if($course->category->category_name === 'Gift')
@else
@if (!empty($course->inventory_type))
{{ $course->inventory_type }}
@endif
@endif
{{ $course->title }}
@php
$difficultyValue = $course->difficulty_level == 'Beginner' ? 1 : ($course->difficulty_level == 'Intermediate' ? 2 : 3);
@endphp
@for ($i = 1; $i <= 3; $i++)
@endfor
{{ $course->difficulty_level }}
{{-- ✅ Only show price if not Physical --}}
@if (optional($course->category)->category_name !== 'Physical')
{{ number_format($course->price, 0, '.', ',') }} {{ $course->currency }}
@endif
@if(isset($buttonLabel) && $buttonLabel === 'Choose Course')
@else
@if(optional($course->category)->category_name === 'Physical')
BUY
@else
BUY
@endif
@endif