MVC the Laravel Way | Learn Laravel The Right Way

  Рет қаралды 4,184

Program With Gio

Program With Gio

Күн бұрын

Пікірлер: 55
@boughanmiseifeddine2164
@boughanmiseifeddine2164 2 ай бұрын
finally the best Php tutor on youtube is back i think i will return to code with php🙂
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Let's good, welcome back
@dustfromoldxp
@dustfromoldxp 2 ай бұрын
From all of the PHP and Laravel tutorials, yours is one of the best for understanding the process of coding, programing from scratch. Thank you for your work and time investment!
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Thank you 💙
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@personaje27
@personaje27 2 ай бұрын
Welcome back Mr Gio
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Thank you
@bahezyounis3125
@bahezyounis3125 2 ай бұрын
I will suggest your courses for everyone who asks the best one for learning PHP the right way so i hope this one will be like pervious one thank you Gio good luck
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@udayan285
@udayan285 2 ай бұрын
Go ahead we are with you Gio.💙
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@AhmedMeklad
@AhmedMeklad 2 ай бұрын
Long time, welcome back 🎉
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Thank you 💙
@mohamedkhodary7831
@mohamedkhodary7831 2 ай бұрын
Keep up the golden work Gio 💯
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Thank you 💙
@alexb.1423
@alexb.1423 2 ай бұрын
Good explanation. The video looks a little bit slower than the others, but that's really good for me personally. Usually, I have to stop it and start it often when it's faster. I am waiting for the other videos.
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@TurntableTV
@TurntableTV 2 ай бұрын
I absolutely love the animation style and presentation, Mr. Gio! I don't know if you edit these yourself or you have an editor but you're doing a fantastic job!
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Thank you. I do edit most videos myself but I do get help on videos like this one where its too much animation involved. This video was edited by editor
@Flo-mz8ct
@Flo-mz8ct 2 ай бұрын
Thank you already for this course. :)
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@junjunghasudungan1905
@junjunghasudungan1905 2 ай бұрын
That cool video for explaination ..
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@MahmoudReyad
@MahmoudReyad 2 ай бұрын
Great Lesson ❤🎉
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@fakh99
@fakh99 2 ай бұрын
Waiting On Fire 🔥
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@keremardcl6759
@keremardcl6759 2 ай бұрын
One of the issue i got while i was watching the previous education series, I can see the number on the thumbnail but not in the title. Can you add them somewhere in the title? This is the 4th video but we cant say it from the title.
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
KZbin doesnt like that & usually doesnt promote the video as much. At least based on my experiments. That is why I put it in the thumbnail & not in title. There is also a playlist so you can see the order in playlist
@cswithismail9463
@cswithismail9463 2 ай бұрын
Great video, Gio, as always. Are you going to cover how to build REST APIs with Laravel? Also, for the folder structure part, can you explain additional folders created like services , repositories ... ? And is it necessary or just for clarity or separation of concerns? Thank you.
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Thank you. Don't think we'll cover REST API's here in depth. I have a video about default folder structure of Laravel explaining what goes where.
@JohnDoeJohn101
@JohnDoeJohn101 2 ай бұрын
In this 'Learn Laravel The Right Way' series, could you make a video on how to optimizing performance, speed, scalability, and user experience in PHP Laravel for both API and web?
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
We'll cover some bits of that yea
@Zubbee
@Zubbee Ай бұрын
Hi Gio, this has raised my curiosity, cause I remember the MVC pattern you talked and how you implemented it in the php series. You "custom" created it. But with the framework I'm wondering if the actual implementation will be similar. If there will be a kind of service layer that will contain the ORM (database calls) and the business logic or if all the business logic will be written within the model. Anyways, I'll keep following to see and learn. Thank Gio.
@ProgramWithGio
@ProgramWithGio 27 күн бұрын
Its a bit different but you will see some similarities
@lairotuT-Tutorial
@lairotuT-Tutorial 2 ай бұрын
Hey Gio, I just found you :-) This is a great Video and I like your kinda cold, calm and sonoric style! This sounds like a very interesting Tutorial for me. And I'm looking forward to the next part! Indeed I am still not really convinced that I will (or perhaps better that I am ready to start with a framework like laravel). On the one hand it often sounds as if it is the only way that a programmer should work as it is so much easier and so much faster. On the other hand I feel a bit uncomfortable to give away this much "structure" for my project. I would highly appreciate if you could tell me if it is possible to switch a project back and forth from/to laravel. What I mean: If I use Laravel, will I be forced to start the project in Laravel from scratch or is there a way to import existing PHP code to laravel and only adjusting the needs by usage of the given testing and debug options? And the other way around. If I later find out that I have to breach the framework at too many points (e. g. because I want to follow different patterns than the framework does), will I be able to take the code back to "simple" PHP? Best Christian
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Thank you. Laravel is kind of opinionated framework, yes you can structure it in a way that you can extract your domain logic and plug it into another codebase or framework with some tweaks & it would work, but it's not that simple. You would need to make sure you follow a set structure consistently & avoid using a lot of things that framework provides like eloquent. So you'd be abstracting a lot of things away at which point then maybe Laravel isnt the right tool to use if switching between frameworks is a common thing. I personally would look at it another way, how many projects did you have to switch the frameworks for before? Is it common where you work? If not then I wouldn't really worry about that too much. You can do a lot with Laravel & even incorporate your own styles, patterns & strategies.
@lairotuT-Tutorial
@lairotuT-Tutorial 2 ай бұрын
@@ProgramWithGio Hey! First of all I deeply appreciate that you seem to reply really every post and comment on your videos!!! Thank you soo much for keeping that close to your community! Warning: Long comment... had no time to refactor 🙂 Indeed I am a 100% hobby programmer but with deep interest. I am not able to care about that matter each day but that makes me even more sensible when it comes to solutions that are originated from the need to work together and aim to support understanding what a code is doing. I started to dive into programming when my father installed an IBM 286 system (hottest shit on the market that time) in his own company. 15.000 German Marks were an incredible sum to invest and it was the time when 2 Megabyte were incredible, when a needle printer with endless paper felt superfast and problems with mouse drivers encouraged me to deassemble the files, look up what it exactly does or doesn't and by trial and error get the little thing working as it was my intention. I worked my times through Assembler, C, C++, Turbo Pascal, Visual Basic, Visual Objects (when it already was a dead language as I tried to fix problems with an old project I wanted to get to work again - I failed) and since now two years I dive into scripting languages (I was only roughly interested in HTML in the 80's). Frontend is the neccessary evil for me. Backend and Middleware my essential and where usual programming, not only with frameworks but any high language end (I don't even know how it is called - understanding and supporting the core process inside the hardware framework), is my habit. Ignoring Visual Basic - where I would call VBA and Access kinda frameworks that always only made me feel like a prison I wanted to break out from - I never used frameworks but from the second I started with PHP I knew that it might become neccessary to get to feel comfortable with it 🙂
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Hey! Thanks so much for sharing your journey. It’s always inspiring to hear about such diverse experiences in programming. It’s amazing how your curiosity and perseverance have shaped your path. I totally get the backend focus, and I’m glad to hear that Laravel seems like a framework that resonates with you. Feel free to reach out if you have any questions or ideas to share!
@أحمدكلش-ض3ع
@أحمدكلش-ض3ع 2 ай бұрын
Happy to be the first comment 😂🎉
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@SazianNULL
@SazianNULL 2 ай бұрын
If I want to map some data like xml or REST API, is a model used for this in Laravel? In theory, a model is any data. But in many frameworks, model = orm
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
you would typically use a value object or DTO for that, not model directly
@Sathiyapriyan_j
@Sathiyapriyan_j 2 ай бұрын
If possible could you upload the video daily :) .
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Unfortunately I cant because I dont have all videos recorded
@sergeisurin2963
@sergeisurin2963 2 ай бұрын
👍🙏
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@AsoASdiq
@AsoASdiq 2 ай бұрын
🥰
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
💙💙
@colydeane
@colydeane 2 ай бұрын
Great videos but the "swooshes" are really annoying and distracting IMO.
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
Thanks for feedback. I'll consider using another effect in future videos
@bartek5598
@bartek5598 2 ай бұрын
Please just drop this message bubbles - they are just irritating and confusing.
@ProgramWithGio
@ProgramWithGio 2 ай бұрын
You mean animation in video? They look pretty good in my opinion, whats confusing about them?
@bartek5598
@bartek5598 2 ай бұрын
@@ProgramWithGio I mean bubbles where there is text inside that you mark with rectangles while reading. You dont need to write text while speaking and thats non native like me speaking. Viewers can always turn on captions on YT, check Code with Mosh channel. He balanced that pretty well.
@kunyuchang
@kunyuchang 2 ай бұрын
@@bartek5598 They look pretty good
Understanding Laravel Architecture | Learn Laravel The Right Way
12:45
Program With Gio
Рет қаралды 6 М.
Understanding the Laravel Service Container | Learn Laravel The Right Way
40:09
Why no RONALDO?! 🤔⚽️
00:28
Celine Dept
Рет қаралды 81 МЛН
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 179 МЛН
Yay😃 Let's make a Cute Handbag for me 👜 #diycrafts #shorts
00:33
LearnToon - Learn & Play
Рет қаралды 117 МЛН
What’s Up with Laravel? It’s Everywhere, and Here’s Why!
6:22
Laravel Request Lifecycle Easy Explanation
7:23
Alphayo Wakarindi
Рет қаралды 388
AWS CEO - The End Of Programmers Is Near
28:08
ThePrimeTime
Рет қаралды 549 М.
The Basics of Routing in Laravel | Learn Laravel The Right Way
11:39
Program With Gio
Рет қаралды 2,1 М.
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 693 М.
What is Laravel & Why You Should Learn It | Learn Laravel The Right Way
6:58
Clean Up Your Routes In Laravel | Learn Laravel The Right Way
22:05
Program With Gio
Рет қаралды 2,3 М.
Why no RONALDO?! 🤔⚽️
00:28
Celine Dept
Рет қаралды 81 МЛН