<?phpnamespace App\Component\AdminMenu\EventSubscriber;use App\Component\AdminMenu\Event\AbstractBuildMenuEvent;class DashboardMenuSubscriber extends AbstractMenuBuildEventSubscriber{ public function buildMenu(AbstractBuildMenuEvent $event) { $this->getMenuBuilder($event->getMenu()) ->addMainItem('Dashboard', 'fal fa-tachometer-fast', 'admin_dashboard_dashboard_index') ; }}