{{ translate('Course Title') }} | {{ translate('Course Level') }} | {{ translate('Action') }} |
---|---|---|
{{ substr($title, 0, 30) . '...' }}@if (count($instructors) > 0){{ translate('Instructors') }} - @foreach ($instructors as $instructor) @php $userInfo = $instructor->userable ?? null; $userTranslations = parse_translation($userInfo); @endphp {{ $userTranslations['first_name'] ?? $userInfo?->first_name }} {{ $userTranslations['last_name'] ?? $userInfo?->last_name }} @endforeach |
@if ($wishlist?->course?->levels?->count() > 0) @foreach ($wishlist?->course?->levels as $level) @php $levelTranslations = parse_translation($level); @endphp {{ $levelTranslations['name'] ?? $level->name }} @if (!$loop->last) , @endif @endforeach @endif |
|