EasyAdmin! For an Awesomely Powerful Admin Area
Global vs CRUD-Specific Configuration
Unlock this challenge
Login Register

Challenge 1 / 2

Suppose you go to the following URL:

/admin?crudAction=edit&crudControllerFqcn=App%5CController%5CAdmin%5CQuestionCrudController

And you have the following code:

// src/Controller/Admin/DashboardController.php
#[Route('/admin', name: 'admin')]
public function index()
{
}
// src/Controller/Admin/QuestionCrudController.php
#[Route('/admin/question/edit', name: 'admin_question_edit')]
public function edit()
{
}

Exactly which route is matched and which controller is executed?

Select your answer
Skip challenges and go to theNext Chapter

Turn Challenges Off?

All further challenges will be skipped automatically.
You can re-enable challenges at any time on this page or from your account page.