@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Select Quiz Course')) @section('header-title')

{{ __('Select a course to view quizzes') }}

@endsection @section('content')
@forelse ($courses as $course) @empty @endforelse
{{ __('Thumbnail') }} {{ __('Course Name') }} {{ __('Category') }} {{ __('Price') }} {{ __('Action') }}
image
{{ $course->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 Quiz') }}
{{ __('No Course Available') }}
{{ $courses->links() }}
@endsection