<?php
namespace App\Controller\Admin;
use App\Entity\Shop;
use App\Entity\User;
use App\Entity\Article;
use App\Entity\Category;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use EasyCorp\Bundle\EasyAdminBundle\Config\MenuItem;
use EasyCorp\Bundle\EasyAdminBundle\Config\Dashboard;
use EasyCorp\Bundle\EasyAdminBundle\Controller\AbstractDashboardController;
class DashboardController extends AbstractDashboardController
{
/**
*
* @Route("/admin", name="admin")
*
*/
public function index(): Response
{
return $this->render('admin/index.html.twig');
// Option 1. You can make your dashboard redirect to some common page of your backend
//
// $adminUrlGenerator = $this->container->get(AdminUrlGenerator::class);
// return $this->redirect($adminUrlGenerator->setController(OneOfYourCrudController::class)->generateUrl());
// Option 2. You can make your dashboard redirect to different pages depending on the user
//
// if ('jane' === $this->getUser()->getUsername()) {
// return $this->redirect('...');
// }
// Option 3. You can render some custom template to display a proper dashboard with widgets, etc.
// (tip: it's easier if your template extends from @EasyAdmin/page/content.html.twig)
//
// return $this->render('some/path/my-dashboard.html.twig');
}
public function configureDashboard(): Dashboard
{
return Dashboard::new()
->setTitle('Little Ethiopia Admin');
}
public function configureMenuItems(): iterable
{
yield MenuItem::linkToDashboard('Dashboard', 'fa fa-home');
yield MenuItem::linkToCrud('Articles', 'fa fa-cart-circle-plus', Article::class);
yield MenuItem::linkToCrud('Categories', 'fa fa-cart-circle-plus', Category::class);
yield MenuItem::linkToCrud('Shops', 'fa fa-cart-circle-plus', Shop::class);
yield MenuItem::linkToCrud('Users', 'fa fa-cart-circle-plus', User::class);
// yield MenuItem::linkToCrud('The Label', 'fas fa-list', EntityClass::class);
}
}