You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace Lc\CaracoleBundle\Controller\Dashboard;
-
- use EasyCorp\Bundle\EasyAdminBundle\Config\Assets;
- use EasyCorp\Bundle\EasyAdminBundle\Config\Crud;
- use Lc\SovBundle\Controller\Dashboard\DashboardController as SovDashboardController ;
-
- class DashboardAdminController extends SovDashboardController
- {
- public function configureCrud(): Crud
- {
- $crud = parent::configureCrud();
-
- $crud
- ->overrideTemplate('layout', '@LcCaracole/adminlte/layout.html.twig');
-
- return $crud ;
- }
-
- public function configureAssets(): Assets
- {
- $assets = parent::configureAssets(); // TODO: Change the autogenerated stub
-
- $assets->addWebpackEncoreEntry('carac-common') ;
- $assets->addWebpackEncoreEntry('carac-switch-merchant') ;
-
- return $assets ;
- }
-
- }
|