render('@LcSov/dashboard.html.twig'); } public function configureDashboard(): Dashboard { return Dashboard::new() // the name visible to end users ->setTitle('LA CLIC !') // you can include HTML contents too (e.g. to link to an image) ->setTitle('') // the path defined in this method is passed to the Twig asset() function ->setFaviconPath('favicon.svg') // the domain used by default is 'messages' ->setTranslationDomain('lcadmin'); } public function configureCrud(): Crud { $crud = Crud::new(); return $crud ->addFormTheme('@FOSCKEditor/Form/ckeditor_widget.html.twig'); } }