@extends('layouts.app') @section('content')

{{ $topic->name }}

@if($topic->description)

{{ $topic->description }}

@endif {{-- Difficulty --}} @if($topic->difficulty) {{ ucfirst($topic->difficulty) }} @endif {{-- Stats Section --}}
Questions: {{ count($questions) }}
XP Reward: {{ count($questions) * 10 }} XP
{{-- Start Button --}} @if(count($questions) > 0) Start Challenge 🚀 @else

No questions available for this topic.

@endif
@endsection