@extends('layouts.app') @section('title', $app_setting['name'] . ' | Select Exam Course') @section('content')
Category: @if (strlen($course?->category?->title ?? 'N/A') > 10) {{ substr($course?->category?->title, 0, 10) . '...' }} @else {{ $course?->category?->title ?? 'N/A' }} @endif Price: @if ($app_setting['currency_position'] == 'Left') {{ $app_setting['currency_symbol'] }}{{ $course->price }} @else {{ $course->price }}{{ $app_setting['currency_symbol'] }} @endif
View Exams