playtini/easy-admin-helper-bundle

EasyAdmin Helper Bundle

Installs: 188

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

pkg:composer/playtini/easy-admin-helper-bundle

1.17 2025-07-03 12:45 UTC

This package is auto-updated.

Last update: 2025-10-03 13:32:37 UTC


README

Install

Add the library

composer require playtini/easy-admin-helper-bundle

Create App\EasyAdmin\EasyAdminMenu implementing EasyAdminMenuInterface. Create DashboardController implementing DashboardControllerInterface. Add to config/services.yaml

    Playtini\EasyAdminHelperBundle\Dashboard\EasyAdminMenuInterface:
        class: 'App\EasyAdmin\EasyAdminMenu'
    Playtini\EasyAdminHelperBundle\Dashboard\EasyAdminContext:
        bind:
            $dashboardController: '@App\Controller\Admin\DashboardController'
    Playtini\EasyAdminHelperBundle\Event\DashboardExceptionSubscriber:
        tags: [ { name: kernel.event_subscriber } ]

This ensures Symfony autowires and autoconfigures your subscriber.


Load routes. Add to `config/routes/easyadmin.yaml`

```yaml
easy_admin_helper:
    resource: '@EasyAdminHelperBundle/config/routes.yaml'