Symfony 5 Tutorial: Symfony UX
33:21
3 жыл бұрын
Some PHPStorm Tips and Tricks.
11:48
4 жыл бұрын
0 - Easy Admin Customization: Intro
3:55
Symfony 4 Easy Admin: Form Wizard.
17:02
Symfony 4: Easy admin - User Roles.
8:55
Пікірлер
@zemtech4325
@zemtech4325 5 күн бұрын
@Overseasmedia: can you please do a video on Symfony Scheduler
@Chess_Squad
@Chess_Squad 7 күн бұрын
Roles by every user. Not good. Better to choice group role with many roles in a group and user can take many groups
@tayebchikhi6503
@tayebchikhi6503 Ай бұрын
Thanks for your video...some changes with vue 3 but it really helps following your videos when you come from symfony's world
@fitter2boss72
@fitter2boss72 Ай бұрын
Hi. Please return to us with content! :)
@OverSeasMedia
@OverSeasMedia Ай бұрын
Kinda difficult to do lol
@fitter2boss72
@fitter2boss72 Ай бұрын
Grate video, and still is actual.
@shapesii
@shapesii Ай бұрын
that's a lot of work for a neutral outcome. better just to use crud maker because now you're using easyadmin as the framework... which is moronic.
@only4comments561
@only4comments561 2 ай бұрын
Es el top rimasto <3
@Argon-X
@Argon-X 3 ай бұрын
I like how he swears when making typos. That's seems fun to me. Maybe because it is uncommon to me to hear something like "oh fcking hell" because english is not my primary language, but anyway, thanks bro, it tunes up my mood. And also great TY for tutorial, very brief and yet sufficient how-to video! 👍
@shyzjke
@shyzjke 3 ай бұрын
Great video!! But how if data from fetching, pending and completed tasks will not work. For example fetch data v-for=“desk in desk” and you must write inside template like v-for=“desk in pending” for filter. But it’s not work 😢
@disconnect3763
@disconnect3763 3 ай бұрын
Hello guys. Please advice me some article when I can realise editing for example HOME page like title and ether data from pages on my Web site. Thank you.
@duartecancela
@duartecancela 4 ай бұрын
Is this possible with easyAdmin?
@duartecancela
@duartecancela 4 ай бұрын
It is possible to show image on edit form? temporary?
@redcanary5651
@redcanary5651 6 ай бұрын
please show as how u configured the make:auth please ,i really need to figured it out for my internship project and with easyadmin i couldnt make it work
@pitbulxdeaa
@pitbulxdeaa 6 ай бұрын
And I am here 7 years later watching this video and thinking. Damn it's still one of the most useful tutorials on youtube on this topic.
@imranlashari6578
@imranlashari6578 7 ай бұрын
Hi @OverSeas Media, i have 1000+ events per month *Not Working:* I am trying to fetch events month by month in the background and storing in vuex store, and once user click on calendar tab, it is not rendering events or not refreshing / updating events with the new data coming using API calls *Working:* If i first goto that component where Full Calendar is initialize then it is working fine, but again user needs to wait alot of time to get the all events, this is what i am trying to get rid off. *Application : laravel + vue js*
@RaniaGasmi-r1d
@RaniaGasmi-r1d 8 ай бұрын
Hello thank you for the tuto ; i want to know if the github repository is up to date ? because i'm using it too , if not please push the latest version of this chatapp and thanks
@amritpalgoyal1062
@amritpalgoyal1062 8 ай бұрын
Please modify it for manifest version 3
@EgorDemeshko
@EgorDemeshko 8 ай бұрын
after JS frameworks symfony is seems like a nightmare
@pandasoli6581
@pandasoli6581 9 ай бұрын
Maannn, thank you sooo much!!!!! I've been stuck on this thing for weeks, even the example provided by chrome wasn't working. I... I don't actually figured out yet very well what was my problem, but now it works, thank you so much!
@dcvlog7686
@dcvlog7686 9 ай бұрын
hello, how to check reponse a message in file exe
@KavitaIndlia-l6e
@KavitaIndlia-l6e 10 ай бұрын
provide code
@captainalpha4853
@captainalpha4853 10 ай бұрын
The component doesn't re-render when its props change.
@IlkerAliev-q5l
@IlkerAliev-q5l 11 ай бұрын
4 yeaers later and idk if anyone has told you this but you sir are mad funny and make the learning process more enjoyable
@OverSeasMedia
@OverSeasMedia 11 ай бұрын
Nah they just kept saying the keyboard is loud and microphone quality is bad and I need a script. But thanks mate much appreciated
@vladislavmikhailov
@vladislavmikhailov 11 ай бұрын
fuc*ing P LMAO
@JanKowalski-dm1mt
@JanKowalski-dm1mt Жыл бұрын
Hey. Found one of your videos in one of my playlists. I put it there back in 2019 when I was learning. One year later I started working as a programmer also thanks to you :). Today I wanna say thanks and all the best to you.
@OverSeasMedia
@OverSeasMedia Жыл бұрын
Ayo that's great to hear mate, best of luck to you as well. Much appreciated.
@danyelbenoit5076
@danyelbenoit5076 Жыл бұрын
L3az khouya
@CelsoAndradeDev
@CelsoAndradeDev Жыл бұрын
thank you.. I'm having a hard time to get rid of a missing translation message for collection's fieldset
@vicsystems
@vicsystems Жыл бұрын
just 9 mins in, and i like this, great job man. I see you struggle with the French and English. cute
@franckagbokoudjo2542
@franckagbokoudjo2542 Жыл бұрын
using VichUploader in Symfony, how to display a thumbnail multimedia thumbnail of the cover of the PDF file after it has been uploaded to the database with easyadmin
@burningdog2
@burningdog2 Жыл бұрын
This was super helpful, thank you! I've just implemented it on Symfony 6.3 and it works great! I used attributes in the entity instead of comments, and set the "type" value as an integer instead of a string (and used an enum to map the integers). One complication was that I had existing data in my post and video entity. The new migration gives sequential IDs to the new content entity, but this violates the new foreign keys set up, as post and video now share a sequence, so after the migration we cannot have both post and video having ID = 1. I added some sql into my migration to keep the posts IDs as is, but to add the highest post ID to each video ID, like so: $this->addSql('INSERT INTO content (id, type) SELECT id, 0 FROM post'); $this->addSql('ALTER TABLE post ADD CONSTRAINT FK_96336D19BF396750 FOREIGN KEY (id) REFERENCES content (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE'); $this->addSql('INSERT INTO content (id, type) SELECT id + (SELECT MAX(id) FROM post), 1 FROM video'); $this->addSql('UPDATE video SET id = id + (SELECT MAX(id) FROM post)'); $this->addSql('ALTER TABLE video ADD CONSTRAINT FK_D2C0D759BF396750 FOREIGN KEY (id) REFERENCES content (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE');
@gerseystelmach6501
@gerseystelmach6501 Жыл бұрын
Thank you very much! You saved my day!
@friedshrmps
@friedshrmps Жыл бұрын
Hello! I'm not sure if you're still active, but I have a question! What is the best practice to implement if I want a multistep form where the user orders a product, chooses an X feature in the next step, chooses a payment method in the next one, and finally have all the previous informations displayed before submitting his choice. I heard using SESSION wasn't a good practice (but then I'm not exactly sure how to use it), and the craue form bundle is a little ambiguous. I am still new to Symfony so any form of help is highly appreciated! Thank you in advance!
@sakmaestro3852
@sakmaestro3852 Жыл бұрын
Hope you make symfony 6 .... great job!
@TomiBorchert
@TomiBorchert Жыл бұрын
you go faster than you are capable of, take it slower. so many typos and stuff. also easier to follow when slowing things down.
@abvisuals9286
@abvisuals9286 Жыл бұрын
thank you
@Suraj_Singh_Developer
@Suraj_Singh_Developer Жыл бұрын
That video i want
@amumuisalivedatcom8567
@amumuisalivedatcom8567 Жыл бұрын
"nobody seems to care about my videos". Dude, i'm devoring them right now, this is seems nearly magical to my point of view, i have the feeling that my whole understanding of symfony have improved by 70% at least lol, ty so much, i'll have to rewatch them often, this is digital gold. Btw i just started an internship (scholar/work), it's my 2nd year in the web and my man, things like you make me feel in love with what i do. You are puting smiles all around you maybe not in your views but in the people that use the fruit of your viewers knowledge, my boss is ultra happy and i've changed so many process in my society only by your easy admin multipe videos, can't wait to see the rest! Well i haven't sleep tonight because of you 😭 i have to go to work in 30" 😭
@fooballers7883
@fooballers7883 Жыл бұрын
Thank you for a great tutorial......some lovely coding.
@Defense89
@Defense89 Жыл бұрын
really loved that tutorial!!!! step by step explaining everything , even thought it was long all content was instructive and very interessing to me... good job, could you do another tutorial for times and of course if we want to add a customer in the agenda like an appointment? thx you did a great job!!!
@kpanat
@kpanat Жыл бұрын
Ну так она конечно работает. Только в строку подключения надо дописать провайдера System.Data.SQLite иначе работать не будет. Не знаю, мб 2 года назад и работало, сейчас нет. Но интересно было бы воспользоваться Entity без сиквела а через классы. Ладно без миграции. Но с классами и с контекстом. Формально они как-то должно работать. И даже есть урок по этому, но он невалидный. Танцы с бубноми не помогли. Там есть ручная правка App.config.
@naspy971
@naspy971 Жыл бұрын
He gave up on his videos because of the low views rate. Sad bro but thanks for the content anyway
@OverSeasMedia
@OverSeasMedia Жыл бұрын
Hey dude you're most welcome. It just takes so much time even the simplest video and honestly I just got tired and it seemed that people complained about the low quality to often do I just decided to let it go
@vaibai5869
@vaibai5869 Жыл бұрын
what a pain in the ass. eloquent orm is the way to go
@diebeziehung1278
@diebeziehung1278 Жыл бұрын
Once again top video, but i have a problem when i send a curl request i recive: syntax error, unexpected identifier &quot;Encoder&quot;, expecting variable (500 Internal Server Error) --> Can anyone help me?
@aleksandrbakharev5199
@aleksandrbakharev5199 Жыл бұрын
I love your "pretty basic" bro )))))))
@DangkhoaDong
@DangkhoaDong Жыл бұрын
Nice tutorial!
@bpri7919
@bpri7919 Жыл бұрын
Hello, is it possible to have the tutorial updated with the symfony 6 syntax because I have errors that I cannot remove. Very good tutorial thank you
@atalthapamagar1098
@atalthapamagar1098 Жыл бұрын
can i get template for this dashboard controller
@mamadoualiou4473
@mamadoualiou4473 Жыл бұрын
thanks a lot for this video
@mukundieldridge7803
@mukundieldridge7803 Жыл бұрын
Source code ??
@asheswath
@asheswath Жыл бұрын
Thanks a lot! Both the parts were really helpful! There aren't many good symfony tutorials on KZbin so I really appreciate the content!
@MushuLeDragonn
@MushuLeDragonn Жыл бұрын
Symfony 6 EDIT : 6:51 you can replace IS_AUTHENTICATED_ANONYMOUSLY by PUBLIC_ACCESS