597 search results

Hi, are there any compatibility issues with the easyadmin bundle?
pasquale_pellicani
pasquale_pellicani
Read Full Comment
Do i need yarn .. or can i use EasyAdmin instead with the new AssetMapper .. ?
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) Install [VichBundle ](https://symfony.com/bundles/EasyAdminBundle/2.x/integration/vichuploaderbundle.html…
Nice tutorial so far! I love it and EasyAdmin :D Is there an easy way to generate an Admin URL with a preset filter? For example, if I want to create different submenu items under the "Question" menu item, to list only the questions related…
Speedyschmid
Speedyschmid
Read Full Comment
Finally! the last tutorial of EasyAdmin Course! Many thanks for your great efforts!
Hi, I don't see dashboard as yours. I see "Welcome to EasyAdmin 4" - in the center of page without aside "Dashboard" and user's login (user icon and user name). Could you check? I have EasyAdmin 4.0.3 Thank you.
Hey there! We have an EasyAdmin tutorial that is, internally, nearly completed :). We will record it sometime in the next 2 months I would imagine. I'll ping Victor (he's helping me with the tutorial) to make sure that these are on there. Cheers…
weaverryan
weaverryan
Read Full Comment
Hey edin Thanks for sharing it. EasyAdmin has changed a lot since this tutorial but many of the topics taught here are still relevant Cheers!
MolloKhan
MolloKhan
Read Full Comment
Hi Diego, Thank you for your answer. I have no problem with EasyAdmin, I just need to think more before I talked ;) Cheers.
Hmm, how are you telling EasyAdmin to use your form type? Also, let me see your CustomFormType code
MolloKhan
MolloKhan
Read Full Comment
Hey Ben, I think it should work, because EasyAdmin forms is based on Symfony Form system. Also, EasyAdminBundle has its own events based on Symfony events: https://symfony.com/doc/current/bundles/EasyAdminBundle/book/complex-dynamic-backends.html#customization-based-on-symfony-events . I hope…
…$item) Also i’ve created the new folder easy_admin (app/resources/views/easy_admin) with the list.html.twig List.html.twig looks like: ``` {% extends '@EasyAdmin/default/list.html.twig' %} {% block item_actions %} {% set _list_item_actions = _list_item_actions|filter_admin_actions(item…
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?
Of course it works if i do it by hand : create the /web/bundles/easyadmin/ : /stylesheet , /javascript & /fonts folders and put the files there by hand (taken from the vendor /ressources/public folders of the bundle). But i want to make it work the right…
Can you please add to your plans : + How to make a landing page (dashboard) for easyadmin because currently, EasyAdmin doesn't have a real backend homepage. When you access the backend, you are redirected to the list action of the first configured entity . + Export data…
Hello! Very good idea with EasyAdmin course! When will the course be available? Regards!
// ... 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
Hey Laurent! > I am using easy-admin and leagueCsv bundle in one of project so i have tried to make it works with league instead of Goodby here's a gist : Awesome! Thank you for posting that! > I was wondering when you are…
weaverryan
weaverryan
Read Full Comment
Hi @Ryan and @Victor Thanks for sharing this useful feature. I am using easy-admin and leagueCsv bundle in one of project so i have tried to make it works with league instead of Goodby here's a gist : `https://gist.github.com/lwillems/bdb662b58a0a48bc4b0d91a28434c6ad…
Hi, is it possible with easy admin bundle to use dynamic choiceType in an embedded form ?