@extends('layouts.app') @section('title', $app_setting['name'] . ' | Select Exam Course') @section('content')

Select a course to view exams

@foreach ($courses as $course) @endforeach
Category Name Category Price Action
{{ $course->category?->title }} @php $price = $course->price && $course->regular_price ? $course->price : $course->regular_price; @endphp @if ($app_setting['currency_position'] == 'Left') {{ $app_setting['currency_symbol'] }}{{ $price }} @else {{ $price }}{{ $app_setting['currency_symbol'] }} @endif View Exams
@endsection