@extends(getTemplate().'.view.layout.layout') @section('title') {{ get_option('site_title','') }} - {{ $category->title ?? 'Categories' }} @endsection @section('meta_description',get_option('site_meta_description')) @section('meta_keyword',get_option('site_meta_keyword')) @section('page')
| COURSES/ {{ $category->title }} @if(Auth::check()) | Courses I joined @endif |
|---|
| {{ $new['title'] }} | @if(Auth::check()) @if(!empty($activeSubscription) && ($activeSubscription->plan_type === 'unlimited' || in_array($new['id'], $subscriptionCourseIds ?? []))) {{currencySign().number_format($new['price']) }} @elseif(checkIfPaid($new['id'])) Purchased @elseif(isset($new['price']) && $new['price'] > 0) {{currencySign().number_format($new['price']) }} @else {{ trans('main.free') }} @endif @else @if(isset($new['price']) && $new['price'] > 0) {{currencySign().number_format($new['price']) }} @else {{ trans('main.free') }} @endif @endif |