369 search results for EasyAdmin

Hi Diego, Thank you for your answer. I have no problem with EasyAdmin, I just need to think more before I talked ;) Cheers. ...
Hey @Duri3l Looks like you are already a pro on EasyAdmin! Congrats! Thanks for sharing your case and solution to others Cheers! ...
MolloKhan
MolloKhan
Read Full Comment
// ... lines 1 - 15
class GenusController extends Controller
{
// ... lines 18 - 20
public function feedAction(Request $request)
{
// ... lines 23 - 31
return $this->redirectToRoute('easyadmin', [
'action' => 'show',
'entity' => $request->query->get('entity'),
'id' => $id
]);
}
// ... lines 38 - 167
}
See Code Block in Script
A Global Export Action

There are actually three different types of actions in EasyAdmin. The first consists of the normal actions, like Add, Edit, Delete, and Detail. These operate on a single entity. The second type is batch actions, which ...

10:13
Btw: In Symfony 4 with EasyAdmin Bundle with Flex, you need to extend this class: EasyCorp\Bundle\EasyAdminBundle\Controller\AdminController instead of: JavierEguiluz\Bundle\EasyAdminBundle\Controller\AdminController This worked for me :) ...
... Hi, It's so weird for me that just when I add "EasyAdmin" folder at my bundle, I get the message that: No route found for "GET /admin/" I've just check any possible solutions without any success :( Any idea?
... I'm not saying it is impossible but basically, you'll have to modify EasyAdmin in a way that it can work with Turbo. That's something I've not done in the past, so I can't say how hard it might.
MolloKhan
MolloKhan
Read Full Comment
Do these methods work with AssetMapper? (I use Symfony 6.4 in my projects) From [EasyAdmin doc](https://symfony.com/bundles/EasyAdminBundle/current/design.html#adding-custom-web-assets) I can use `->addCssFile('asset logical path')` Is that correct? François ...
Thank you for the answers MolloKhan, managed to make the validation on debounce happen with your tip! I am guessing the same about EasyAdmin, I guess it will just take a little bit of time! Have a nice day! ...
... Hey! I've never used Turbo before but I can't wait to discover it on your training! I already have a first question. Is it possible to use Turbo on EasyAdmin? :)
Hey Ryan, Yeah, you're right, it's good to know about Symfony Security system before starting EasyAdmin course because we're talking about it there supposing you're already familiar with it. Cheers! ...
Hey, In EasyAdmin you can't inject the Request object directly into a controller's method. You can get it from the RequestStack, or from the `$adminContext->getRequest()` (`EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext`) Cheers! ...
MolloKhan
MolloKhan
Read Full Comment
Hey, In an EasyAdmin controller, you can inject external services by listing them to the `getSubscribedServices()` method. Like this: ```php public static function getSubscribedServices(): array { return array_merge(parent::getSubscribedServices(), [ // your service FQNS ]); } ``` ...
MolloKhan
MolloKhan
Read Full Comment
Hey |mention:71892| What part are you talking about? Anyway, you can check the EasyAdmin docs https://symfony.com/bundles/EasyAdminBundle/current/index.html or perhaps the UPGRADE file may be useful https://github.com/EasyCorp/EasyAdminBundle/blob/4.x/UPGRADE.md Cheers! ...
MolloKhan
MolloKhan
Read Full Comment
Yeah a lot has happened in this time. I have implemented the public area and user panel alone and left easyadmin for admin. And it works great! Thank you! ...
Hey Jiros1, Could you elaborate a bit more on your question? We have a course about EasyAdmin: https://symfonycasts.com/screencast/easyadminbundle . And we cover how to manage entities with this course, including users. Cheers! ...
I have error like this: :( Attempted to call an undefined method named "get" of class "App\Controller\EasyAdmin\QuestionCrudController". Did you mean to call e.g. "getEntityFqcn" or "getSubscribedServices"? In class QuestionCrudController() on export() method Did i have bad ...
Can you tell me what is u() function in TruncateLongTextConfigurator.php ? PHPOStorm show mi message: Undefined function 'u' :) And Symfony show: Attempted to call function "u" from namespace "App\EasyAdmin". ...
Hello! A little bit question please! To create "Edit Profile" page for my users (no Admin role permission). Are there any way to use EasyAdmin or it works only for Admin role? Many thanks in advance! ...
Hi, I do want to use Symfony UX Dropzone to upload multiple files (documents-type) with easyadmin. Can i get some guidance on how to go about it. ? thanks ...