367 search results for EasyAdmin

{% extends '@EasyAdmin/default/show.html.twig' %}
// ... lines 2 - 15
See Code Block in Script
14 lines | app/config/routing.yml
// ... lines 1 - 9
easy_admin_bundle:
// ... lines 11 - 12
prefix: /easyadmin
See Code Block in Script
{% extends '@!EasyAdmin/layout.html.twig' %}
// ... lines 2 - 6
See Code Block in Script
{% extends '@EasyAdmin/default/list.html.twig' %}
{% block item_actions %}
// ... lines 4 - 6
{% endblock %}
See Code Block in Script
41 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 38
access_control:
- { path: ^/easyadmin, roles: ROLE_ADMIN }
See Code Block in Script
14 lines | app/config/routing.yml
// ... lines 1 - 9
easy_admin_bundle:
resource: "@AppBundle/Controller/EasyAdmin/AdminController.php"
// ... lines 12 - 14
See Code Block in Script
Great tutorial, but I'm starting with an empty Symfony project, I've added EasyAdmin, customized the dashboard, everything is fine, but I'm unable to find how to configure the database connection. And I'm probably ...
... Hi, I'm using EasyAdmin 3.x, and I'm having issues with TExtEditorField; apparently, it strip all tags that are not div or H1; I need to handle H2, H3, etc .... I have found this solution: ``` yield ...
Gianluca-F
Gianluca-F
Read Full Comment
Thanks for your help! It still does not work. But to be honest, as the bundle instruction I shouldn't add the logout path as I did above. If I removed it, seems I have a problem in EasyAdmin. As below: Twig\Error ...
He Ryan, How do you get this to work with easyadmin. I have installed the @symfony/ux-turbo and added it to the easy admin dashboard with the configureAssets like so: ``` public function configureAssets(): Assets ...
Hey Alessandro D. EasyAdmin fully relies on the Symfony Form component, so you can do the exact same thing EasyAdmin forms as you would do with "normal" forms. What you need to do is to specify the "choice_label ...
MolloKhan
MolloKhan
Read Full Comment
Hi Victor I found my way ;) I had to implode my own method to encrypt the password when I create a user. I didn't think before I posted the comment ;) EasyAdmin is so powerful when you understood how to override the ...
... are much easier to enable even in those situations. About EasyAdmin, I get this question from time-to-time. I think that EasyAdmin itself will need to update how its JavaScript is organized a bit to allow for Turbo ...
weaverryan
weaverryan
Read Full Comment
``` ErrorException: Warning: Undefined array key "ea" at vendor/easycorp/easyadmin-bundle/src/Controller/AbstractCrudController.php:624 at EasyCorp\Bundle\EasyAdminBundle\Controller\AbstractCrudController ...
For those interested in the easiest way to upload images to s3 using EasyAdmin: 1) Setup Flysystem or Gaufrette [All about Uploading Files in Symfony](https://symfonycasts.com/screencast/symfony-uploads/flysystem) 2 ...
Hi, I would like to redirect my users depending on their role. If the user has ROLE_ADMIN, I would like it to be redirected to easyadmin route. Else, users have to be redirected to app_homepage. I modified my ...
Hi, are there any compatibility issues with the easyadmin bundle? ...
pasquale_pellicani
pasquale_pellicani
Read Full Comment
159 lines | app/config/config.yml
// ... lines 1 - 80
easy_admin:
// ... lines 82 - 97
entities:
Genus:
// ... line 100
controller: AppBundle\Controller\EasyAdmin\GenusController
// ... lines 102 - 159
See Code Block in Script
158 lines | app/config/config.yml
// ... lines 1 - 80
easy_admin:
// ... lines 82 - 97
entities:
// ... lines 99 - 158
See Code Block in Script
14 lines | app/config/routing.yml
// ... lines 1 - 9
easy_admin_bundle:
resource: "@EasyAdminBundle/Controller/"
type: annotation
prefix: /easyadmin
See Code Block in Script