Thank you Dary. Your videos have been so enlightening.
@codewithdary Жыл бұрын
You are so welcome :)
@s0larite2 жыл бұрын
The greatest "How to..." I've ever seen. Thank you for your job. You made our lives much easier.
@codewithdary2 жыл бұрын
Thank you
@manguitodelicioso Жыл бұрын
It was well worth spending my time here while learning things about the latest version of Symfony. I'll try to create the contact page myself. Thanks for all your time and patience, Dary, and as long as I can and have time, I'll be around here.
@codewithdary Жыл бұрын
Great to hear that. Thank you so much :)
@rafapaprocki29592 жыл бұрын
This is amazing, with 0 prior knowledge of Symfony I made this small blog thanks to you! I like how you show everything step by step and there is no gaps - through the whole course there was not a single moment where I had to scratch my head and think "how did I get here". Great job! I look forward to further extensions of this Symfony adventure. Maybe with bit of a frontend? Like, how to combine it with bootstrap, or jquery (or whatever is considered fancy nowadays).
@codewithdary2 жыл бұрын
Hi Rafal. Thank you for your encouraging words, makes me want to make more and more tutorials :). I'm definitely coming back soon to Symfony tutorials and I will be making something fancy!
@b.c.2177 Жыл бұрын
Thank you for the course!
@codewithdary Жыл бұрын
My pleasure!
@ЕвгенийБатулин-г9з2 жыл бұрын
Thank you! It's a very good work. Please continue.
@codewithdary2 жыл бұрын
Thank you a lot! :)
@athuldinesh19232 жыл бұрын
Thankyou for this course and please continue the symfony tutorial.
@codewithdary2 жыл бұрын
Thank you. Main focus the upcoming period will be Laravel!
@deZOO77 Жыл бұрын
That was an amazing journey. Thx man for your effort, great stuff!!!
@codewithdary Жыл бұрын
Wow, thank you so much
@vanthachhorn432 Жыл бұрын
Thank you so much, it's been a great journey for me. Still expect to see queryBuilder you mentioned from video 14th.
@codewithdary Жыл бұрын
Not coming anytime soon :(
@Aldo051222 жыл бұрын
Thank you for this course. I've learned a lot and you explain what you are doing and what's going on very well!
@codewithdary2 жыл бұрын
You're very welcome Aldo!
@ChrisM-st1pw2 жыл бұрын
Thanks for the videos, I would like to see more from you on Symfony.
@codewithdary2 жыл бұрын
Will definitely do in the future :)
@naseerNF Жыл бұрын
Hi.. simple and nice explanation.. I'm wondering to see how ajax works in symfony 6 .. can you please do a video for that
@codewithdary Жыл бұрын
Unfortunately I'm not going to make any Symfony tutorials anytime soon :(
@semantixpt2 жыл бұрын
Thanks for all your work. What I find amazing is the quantity of things that have changed in four months. I almost spent more time fixing up the changes than on coding along. I think you might add some brief comments on the description to send viewers in the right direction regarding these changes. It can be very frustrating when you get there and we don't. I wish I had taken notes of the problems I faced, but I didn't, sorry...
@danieluxury Жыл бұрын
Thank you so Dary much for sharing it!
@codewithdary Жыл бұрын
You are so welcome!
@shashithasandunil94642 жыл бұрын
Thank you for this course, it's very helpful ...
@codewithdary2 жыл бұрын
Thank you!
@abdulhafizqaderi32302 жыл бұрын
all time best. awesome guide perfect instruction love to see more more project with php symfony .
@codewithdary2 жыл бұрын
Thank you so much Abdul
@gatts67272 жыл бұрын
Tks, learned alot!
@codewithdary2 жыл бұрын
Glad to hear Gatts!
@ayenikehinde29174 ай бұрын
nice tutorial
@abdulwajid5800 Жыл бұрын
Thanku very helpful course.
@codewithdary Жыл бұрын
I'm happy to help Abdul!
@abdulwajid5800 Жыл бұрын
@@codewithdary Can you also make video on pimcore
@vasuvvasuv7751 Жыл бұрын
can anyone help me 2:45 i have add the security.yaml file access control i have getting this error The file "E:\dev\htdocs_link\movies\config/packages/security.yaml" does not contain valid YAML: Unable to parse at line 37 (near "{ path: ^/profile, roles: ROLE_USER }") in E:\dev\htdocs_link\movies\config/packages/security.yaml (which is being imported from "E:\dev\htdocs_link\movies\src\Kernel.php"). nor redirect login page
@nawarhasan86272 жыл бұрын
very amazing course, can you explain about voter and more in rules security
@codewithdary2 жыл бұрын
Thank you Nawar, I'll have a look into it :)
@jonnys_media Жыл бұрын
It was a great Tutorial!.. I'm having problem with the authentication. Everyting seem to work but when I Signing up, The session is not starting. It's taking me back to the Login Page every single time. Do you have any idea what could be happening?/ thanks A lot!
@PartyBrudeeeer2 жыл бұрын
FYI: If anyone wondered, how to delete the old image, when we edited an existing movie, here ya go: #[Route('/movies/edit/{id}', name: 'edit_movie')] public function edit($id, Request $request): Response { $movie = $this->movieRepository->find($id); $oldImgPath = $movie->getImagePath(); //get project dir $projectDir = $this->getParameter('kernel.project_dir'); $oldImgFullPath = $projectDir . '/public/' . $oldImgPath; //delete file from internal filesystem if ($movie->getImagePath() !== null) { $fileSystem = new Filesystem(); $fileSystem->remove($oldImgFullPath); } $form = $this->createForm(MovieFormType::class, $movie); $form->handleRequest($request); ...
@codewithdary2 жыл бұрын
Thank you for sharing!
@sakmaestro3852 Жыл бұрын
Sir do u have a video about email authenticator after the user is register using email?
@codewithdary Жыл бұрын
Unfortunately I don't :(
@ysad6962 жыл бұрын
I have enjoyed your video alot. But what if it is only you want to access to the create page without allowing anyone else apart from you. Please try to create the video on this one.