fjerbi / ultimate-admin-bundle
Symfony AdminBundle
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Language:Twig
Type:symfony-bundle
Requires
- php: ^7.4
- erusev/parsedown: ^1.7
This package is auto-updated.
Last update: 2024-10-24 22:31:13 UTC
README
Execute this command in your terminal
composer require fjerbi/ultimate-admin-bundle
Add these lines in your services.yaml
fjerbi\AdminBundle\Controller\AdminController:
calls:
- method: setContainer
arguments: [ '@service_container' ]
Add this in your routes.yaml
admin:
resource: '@Admin/Controller/'
type: annotation
prefix: /admin
And finally execute this command
php bin/console doctrine:schema:update --force
check your database if the new tables were added successfully
NOTES: if you want to check the routes just execute this command
php bin/console debug:router