It is a pleasure to have Alex on. He actually taught me a good chunk of my PHP knowledge way back in the day when he ran under "PHP Academy". Thanks Alex :)
@calebmbugua7454 жыл бұрын
woow..thanks brad for bringing alex to teach us more of Laravel.
@akankhaahmed4 жыл бұрын
same here
@muhammadainuddin46504 жыл бұрын
Hey Brad, can you please also do a PHP crash course?
@cubedev48384 жыл бұрын
Alex dont have utube channel?
@TraversyMedia4 жыл бұрын
@@cubedev4838 I think he focuses mostly on his website, but here is the link. Ill also add in the description -kzbin.info/door/pOIUW62tnJTtpWFABxWZ8g
@ffr3ak4 жыл бұрын
Dude I remember learning PHP from your tutorials under PHP academy channel back in early 2014. About 6 months later I got myself a first job as a PHP developer which kicked off my IT carreer. Forever grateful! Now here I am almost 7 years later learning new things and found you again. Awesome :)
@serenity-indeed2132 Жыл бұрын
was this, you had no prior knowledge of any programming language? and still managed to get a job after only 6 months?
@Stoney_Eagle4 жыл бұрын
Laravel is a joy to code with. Once you understand the MVC part of it it's super easy and fast to do anything you can imagine.
@@shaynhacker5746 If you are a bit more specific, maybe I can help.
@Stoney_Eagle3 жыл бұрын
@@shaynhacker5746 I got started with laravel with his "Laravel from scratch" Playlist from 4 years ago. I just followed along and then started to create my own pages with the example. The basic gist is: You go to a route eg "/about" and the router asks the controller for what to do. The controller then grabs all the data: from the database based on your model(s), from storage, from an external source, or hard-coded and it passes it on to the view. The view takes that data and with your html markup builds the page and then send it back to the client. Take a not to large project you already have in vanilla PHP. Define all your routes in the web.php and send them to "{routeName}Controller" In that controller build all the data you need in your html and put that in the view function with "{routeName} View" The youtube channel Coders Tape has plenty of deep dive videos on specific items in laravel. 😉
@ambrosedavid40013 жыл бұрын
@@Stoney_Eagle wow you really broke this down
@ambrosedavid40013 жыл бұрын
@Stoney_Eagle i'm currently building a big project and it's my first time building with laravel. I would like to ask a few questions for guidance, please what's your email address so i can contact you if you dont mind
@michaelo4u3 жыл бұрын
Thank you so much for this Alex. Anyone who had this error: "Target class [App\View\Components\Post] does not exist", in the Blade Components part (02:06:49), then make sure you deleted the "View\Components\Post", and finally run "php artisan view:clear".
@amarjanovic9893 жыл бұрын
Thank you very much!
@stratos83203 жыл бұрын
thank you
@Morgan-vz6oo2 жыл бұрын
Thank you!
@ontheruntonowhere2 жыл бұрын
He got the same error in the vid at 2:09:07 but he didn't bother to explain it, he just edited it out. Thanks for your explanation.
@atrus3823 Жыл бұрын
@@ontheruntonowhere Yeah, I noticed that too. There was a sneaky cut there. There is a visible refresh and the error appears and then it just cuts to it working XD. Thanks to @michaelo4u to showing the fix.
@Redragon25012 жыл бұрын
I can't believe i watched 2,5 hours of coding in one sitting. Just amazing how thrilling and at the same time pleasant this course is done by Alex. Many thanks!
@FacePlat34 жыл бұрын
Damn... This was the first web dev course I have ever finished watching and follow through and that makes me feel accomplished :)
@pallyweb3 жыл бұрын
Same here ;)
@tyrellwreleck42263 жыл бұрын
i know it's been almost a year, can you give the list of extensions used in this video? I think i'm missing snippets for css
@kachicelestine96594 жыл бұрын
Thank you sir for the nice and concise series in laravel 8. To avoid manual importation of classes, I use NameSpace Resolver extention(vscode). Other extensions that make laravel easy in VSCode include :- Laravel blade snippet Laravel snippet Laravel spacer
@Knards4 жыл бұрын
Alex is a HUGE part of my early learning. Be hard to find anyone better!
@@javaprogrammingmastery wow man, respect, THANKS A LOT .
@PixiiBomb4 жыл бұрын
If you're having an issue around @12:50 - @13:20 using "require('tailwindcss')" and then trying to run "npm run dev" -- Tailwind CSS 2.0 requires Laravel Mix version 6 (which is currently in a beta state) -- You can check which versions you have installed in the package.json file -- If you've noticed that Tailwind CSS version is 2 or higher and Laravel Mix is 5 or lower, you can try the following: 0) You have already typed: require('tailwindcss') into the webpack.mix.js file 1) In the terminal type: npm remove laravel-mix 2) Terminal: npm install laravel-mix@^6.0.0-beta.14 --save-dev 3) Optional Terminal (probably isn't necessary, but wont hurt): php artisan config:cache 4) Terminal: npm install 5) Terminal: npm run dev That should get you back on track
@31Tizi3 жыл бұрын
Thanks a lot - works great!!
@pokeedmund10162 жыл бұрын
Thanks for this! I was stuck on this for so long. Some other things to consider as of February 2022: Make sure to run: npx tailwindcss init to get the config file you might run into a .bashrc issue, in which case you have to download gitbash. Use gitbash to navigate to the root of your directory using `cd ~` You edit the .bashrc file using `code ~/.bashrc` Then append to that file: export PATH=$(echo "$PATH" | sed -e 's/:\/mnt[^:]*//g') # strip out problematic Windows %PATH% npm install npm run dev *EDIT* Actually, it still didn't work. I gave up and used bootstrap instead
@abhijithj23664 жыл бұрын
I remember when I was starting to learn PHP, it was from Alex's videos on TheNewBoston. Glad to see him again. Its been like 4 years.
@TraversyMedia4 жыл бұрын
Yeah, he's one of the OGs. I'm trying to get Bucky here as well :) Good to see he's back doing content
@codewithlek91344 жыл бұрын
@@TraversyMedia please bring Bucky 💙
@sitharamadushan87294 жыл бұрын
@@TraversyMedia It's nice if Bucky is here as well!
@kadershaikh17044 жыл бұрын
Alex is such a good teacher. His explainations are so simple and easy to understand. Brad please want more of Laravel and Vue content from your channel....plzzz
@folkepalmqvist16203 жыл бұрын
Wait, is this Alex from phpacademy? Because of you I now work with my dream job in IT. Big thanks for all your work!
@robiparvez4 жыл бұрын
alex is the first teacher that helped fall in love with laravel. He is concise and most importantly always maintains structure.
@dibbyo4563 жыл бұрын
Me too.
@marshallklickman3 жыл бұрын
As a primarily front end dev who hasn't worked with Laravel for at least a year (and not on a regular basis for at least two years), this video is *exactly* what I was looking for. So amazing. I even created a "Laravel" list in my saved KZbin videos just for this. Excellent work, thank you so much.
@deepeshdhakal74763 жыл бұрын
I recently followed the laracast's "laravel from scratch" for beginners and watching this one is really taking my understanding to the next level. All the gratitude, love and best wishes from Nepal to this channel and its authors.
@LongySchlongy4 жыл бұрын
Travery is really taking care of us developers hey. I learnt an older version of laravel from this channel and today I'm a well established full stack freelance web developer. Thank you Brad
@cobb2084 жыл бұрын
Outstanding! You covered the same amount of information that other tutorials take ~10 hours.
@BusinessWolf1 Жыл бұрын
last time I had to use PHP I had to learn these for the first time in 7 days: jQuery, XAMPP, Codeigniter 4, PHP, routing, MySQLi, everything to do with databases, custom authentication with privilege tiers. And your tutorials saved my ass. Now I return to you, having to learn and use Laravel in 3 days. Ole' faithful.
@chrisplusplus62324 жыл бұрын
If php/laravel topics are regularly posted in this channel, there will be no conspiracy theory of php being obsolete, this can be huge contribution and support from brad.
@shaikhalamin234 жыл бұрын
Alex was my first instructor to learn laravel in 2015. I am glad to see him at here
@TheViPerBlackHawk4 жыл бұрын
I was hoping for an updated Laravel and it’s here 😆
@mweb73444 жыл бұрын
Same, this is just awesome
@arielcuesta55204 жыл бұрын
Me too!! Perfect timing for my new project!!!
@edpogi79343 жыл бұрын
Just completed this course now (3 days learning). Thank you very much Traversy and sir Alex for very well precise explanation. I really learned a lot here, just right to my new work. God bless you there bro
@SoliasSerene4 жыл бұрын
When the presenter right-clicked and chose "import class" for the "Hash" facade @41:31, what plugin/extension gave VS code that ability?
@gsvf4 жыл бұрын
I found it! The name is PHP Namespace Resolver
@NikhilPatil4u4 жыл бұрын
@@gsvf Thanks For Help
@kennethkipchumba25324 жыл бұрын
That also gave me some trouble trying to figure out.
@MrRoubleh4 жыл бұрын
@@gsvf thanks man
@nbarshain3 жыл бұрын
@@gsvf I was looking all over for this! Thank you for finding it!!! @Solias Serene Thank you for asking the question
@rawhasan11803 жыл бұрын
Thank you so much for giving this awesome Laravel 8 course for free when any good Laravel 8 tutorial is hard to find on KZbin or even on Udemy! I would like to sign up for your courses if you release some updated Laravel 8 courses. It looks like there are mostly old version courses on your site. Thanks a million for teaching this lot in this short time! I now have a good understanding of Laravel to get me started.
@vedam79494 жыл бұрын
I think its missing something at 02:09:09, didn't mentioned how you fixed the "Target class [App\View\Components\Post] does not exist" error
@Domc3603 жыл бұрын
I think I've found the problem. When you delete Post component file, you have to save again both index.blade.php files in users/posts and posts view folders, even if you have not made any changes prior deleting Post component.
@Bebe-sg4mg3 жыл бұрын
@@Domc360 thanks alot
@TGDTom3 жыл бұрын
@@Domc360 Thanks dude! Was literally stuck on that for half an hour lol
@rawhasan11803 жыл бұрын
@@Domc360 Thanks, buddy! Save the life!! Was dying to sort it out.
@migueldemaria38302 жыл бұрын
@@Domc360 saved my life, thanks!
@saurabhjindal83183 жыл бұрын
Awesome video...I'm node developer and I haven't worked on php in the last 6-7 years....I was blown away by the maturity of the framework
@QuentinWatt4 жыл бұрын
Nice work Alex.
@nwkwok3 жыл бұрын
For those that had trouble with getting the auth() to work (and if you're using VS Code): navigate to VS Code settings >> search for useignorefiles and set this to false. When this is set to true, it hides the ability to use hidden files and auth() is tucked away in vendor/laravel/framework/src/illuminate/auth. Thank you, Alex!
@AnthonyBird3 жыл бұрын
This didnt help but adding use Illuminate\Support\Facades\Auth; remove use auth; then replace auth with this: $credentials = $request->only(['email', 'password']); Auth::attempt($credentials); To get user user Auth::user()
@ayyantariq3214 жыл бұрын
Waiting For This Crash Course. Thank You Soo Much Guyz!
@ivyminaywa23863 жыл бұрын
Been looking for Laravel tutorial on youtube then came across this just to realize It's Alex from thenewboston back in the day. Pleasure to meet you again Alex looking forward to the course
@ricardogilsimoes4 жыл бұрын
This course made my like php so much more! Thank you for your work!
@Idysman4 жыл бұрын
Ah Traversy media Thanks!!! Alex thanks so much. Currently am learning Laravel and this will really be a great edge for me. I really appreciate the energy and synergy between you and Alex Thanks once again.
@MrSiamtea4 жыл бұрын
I'm following everything as video but stuck at 2:09:07 , After deleting Post.php, there is an error, I think Alex skipped the fix in the video. Anyone can help me please.. Error : Target class [App\View\Components\Post] does not exist.
@alrifay4 жыл бұрын
Run this command to delete view cache. php artisan view:clear
@MrSiamtea4 жыл бұрын
@@alrifay Thanks a lot. It's working 👍🏻👍🏻
@NazmulHo19714 жыл бұрын
@@alrifay Thanks! It happened to me too.
@jgonsuron4 жыл бұрын
@@alrifay Thanks for the save!
@justicetout3 жыл бұрын
@@alrifay THANK YOU !
@fablyinspirations77834 жыл бұрын
Amazing!!!. I have been developing with Laravel for the past 4years but have not created any completeproject with laravel8 yet, this is a great refresher!!. Thank you Alex!, Thank you Brad!!
@mtshgaming2924 жыл бұрын
Am i dreaming laravel crash course in traversy media damn it makes my life easier
I was really looking forward to get an up to date Laravel course from Brad, but I must say this instructor is really really good and is explaining everything with precise detail. Respect and thumbs up!
@yungifez4 жыл бұрын
Me when i started : oh wow laravel Me at 1 hour : i am one with the laravel documentation, i have been reading it like a textbook
@knotcircle28442 жыл бұрын
I just finished this course today and I can now say, I'm ready to deep dive more in Laravel. Thank you Alex. This Laravel crash course is the most easy to follow video I have seen. Thanks also to Brad TraversyMedia for making this available. Deserves a million likes
@fadifindakly38504 жыл бұрын
What a great tutorial! Thank you for the huge effort you have put in it!!
@24ronin3 жыл бұрын
Best Laravel Tutorial i have ever come across. Saying this after going through so many paid and free MOOCS!! The flow and pace is just perfect to catch up, clear doubts and understand the framework. Thank You, Alex for making this tutorial, and thank you, Brad for uploading this in your wonderful channel. I wouldn't have known Alex if not for this episode.
@droneArt7144 жыл бұрын
If you make a mistake on routing or in view components use this: php artisan route:clear php artisan view:clear
@kurshadqaya16843 жыл бұрын
You saved me from wasting my time! Thank you!
@KKVinayKumar3 жыл бұрын
Alex Garrett is my hero. Before watching his video I was having hard time understanding Laravel. But after watching his video and working on few examples, I found Laravel understandable. Thank you Alex.
@AyomideIruobe4 жыл бұрын
I am having issues with "npm run dev" after Adding / Including Tailwind in my CSS.. I get this ERROR Failed to compile with 2 errors. what do i do?
@AyomideIruobe4 жыл бұрын
So I found a solution to my problem and felt i should share it, anyone having that issue should Install Tailwind and its peer-dependencies using npm and run " npm install -D tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9 " after this you can then run " npm run dev "
@ryantheghost21854 жыл бұрын
@@AyomideIruobe yes.Its best to first uninstall the whole thing then do this.The code is from the official doc of tailwind
@Tube-hn9rc4 жыл бұрын
@@AyomideIruobe Wow Thanks You saved my life good brother for the reply
@dezareo4 жыл бұрын
I've got same problem, and this solution work fine for me dev.to/robertobutti/how-to-install-tailwind-css-2-with-laravel-8-4bom
@GrahamSmart4 жыл бұрын
@@AyomideIruobe Gah, annoyingly this didnt fix it for me :( still no luck after hours of research, ive given up.
@peksonholinificent70562 жыл бұрын
Apart from a cool voice, Alex is a god-level developer...Started watching this video last month...and am not even half way through. So much to chew on. Great content!
@manlioguitar4 жыл бұрын
If you guys have any issue with the below line: auth()->attempt($request->only('email', 'password')); Replace it with the below code: // Import Auth: use Illuminate\Support\Facades\Auth; // Apply the fix $credentials = $request->only(['email', 'password']); Auth::attempt($credentials);
@cowdickerson81024 жыл бұрын
I have an issue with bad method call from the validate at 34 min in. BadMethodCallException Method App\Http\Controllers\auth\RegisterController::validate does not exist. any ideas?
@TheAzeyHD3 жыл бұрын
Thanks a lot!
@nnamanibenjamin50932 жыл бұрын
Am still getting null as I dd(auth()->user()); in my dashboard controller
@andrewabwango89652 жыл бұрын
@@nnamanibenjamin5093 Faced the same issue and solved it by hashing the password before creating or registering the user. It was showing null because if the password in the database is not hashed, the attempt method will always fail because passwords will never match. This is the fixed section in my code and it worked; $password = Hash::make($request->password); // store user with user model and create method User::create([ 'name'=> $request->name, 'username'=> $request->username, 'email'=> $request->email, 'password'=> $password, ]); auth()->attempt($request->only('email', 'password')); return redirect()->route('dashboard');
@thesoftwarepimpgma Жыл бұрын
this one single video has taught me laravel from start to " i know how this page works " thank you, amazing tutorial
@henkprinsloo17434 жыл бұрын
Wow - I want to take your course on codecourse.com but man - you go SO fast through some things...with very little explanation. Thank you anyway for the content.
@Venezuelangel3 жыл бұрын
Yeah, in late 2020 I finished a Laravel app that would run nationwide in Argentina, and I still get confused by this guy. I don't know if it's some ego thing were he wants to prove how fast he can code, but it sucks to get stuck somewhere and spend two hours looking at the same 10 minutes in a video. I would never subscribe to this guy
@mohammedhamza21233 жыл бұрын
to be honnest, you deserve a medal for that crash course, for beginners like me it looks like a treasure
@mudso4 жыл бұрын
14:18 As of Nov 23, 2020: if you encounter the 'npm run dev' or 'npm run watch' and it gives you an error saying Error: PostCSS plugin tailwindcss requires PostCSS 8. Run the following commands: npm uninstall tailwindcss postcss autoprefixer npm install tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9
@mikaelstener80244 жыл бұрын
Exactly! Worked for me too.
@ouranhighfan1014 жыл бұрын
thank you so much! Finally worked for me :D
@stevenanthony40944 жыл бұрын
tyvm
@106axi4 жыл бұрын
gg
@benl81434 жыл бұрын
worked for me too , thx a lot
@alejandrovillanueva45624 жыл бұрын
It's one of the best laravel courses I've ever seen. I hope you publish a second part
@kennethkipchumba25324 жыл бұрын
I pray for that too. It would be so awesome.
@MuhammadSaaddev2 жыл бұрын
for those who are stuck on tailwindcss error, please make sure that you're using laravel-mix version 6 or higher. if in case you're using version 6 or higher and still getting the tailwind error then do the following : first uninstall the tailwind : npm uninstall tailwindcss then reinstall like this : npm install -D tailwindcss postcss autoprefixer then run the following command : npx tailwindcss init considering you already wrote require tailwindcss in webpack, only thing left to do is this : npm run dev You're good to go ! =)
@simonhk2 жыл бұрын
You have saved the day man!
@jlambert120132 жыл бұрын
Thanks you so much!
@jlambert120132 жыл бұрын
This should be the top comment!!!!
@BrunoHorta-dv3we Жыл бұрын
thank you, saved me
@sinashariati44124 жыл бұрын
This is a really nice tutorial love to see more on laravel & php & vue
@proandy44483 жыл бұрын
This is not a crash course but a full tutorial for an absolute beginner. Many thanks ALEX! you are the best
@silexet-104 жыл бұрын
Nostalgic! Started in PHP Academy, here is where I learned British accent before Peppa Pig 😅
@raik3034 жыл бұрын
Same here nostalgic! 😄 I started learning php from Alex, code academy the year between 2014 and 2016.
@silexet-104 жыл бұрын
@@raik303 same here, using notepad ++ LOL
@DavidAnoff Жыл бұрын
It's not a beginner's course but very loaded and impactful. I've been using Laravel for 2 years now but still learnt a whole lot more.
@k.von.4 жыл бұрын
Thank you for the great intro Laravel. I was wondering which client side database interface you're using in the video (at the 20:30 mark)?
@JChristoph3 жыл бұрын
I was curious about that as well.
@martinhl13 жыл бұрын
Seems to be TablePlus :)
@kamrulahsan062 жыл бұрын
It is postico
@rickybarabba78664 жыл бұрын
Valuable content from Alex Garrett Smith. It covers anything you need to get started with Laravel and Tailwind and even beyond that...
@pacholskigaming86994 жыл бұрын
WOAH. THIS IS EXACTLY WHAT I WAS LOOKING FOR
@c4sper8772 жыл бұрын
No way! I knew that voice the second I heard it. Alex is a great teacher. I learned fundamental PHP through many of his videos. It's great to hear his voice on Traversy Media 👍😃👍
@kenpeters10094 жыл бұрын
Am a simple guy i see traversy media upload i click
@jakke19753 жыл бұрын
Thanks for another great tutorial. It is very condensed and a lot of theory is given... I'm always amazed these 1-2h videos keep me busy for days but I learn A LOT through them.
@VikasJo4 жыл бұрын
I thought i will go to watch horror movie, but i changed my mind.. Thank you for both :)
@kennethkipchumba25324 жыл бұрын
lol
@SoLiDStretchDB3 жыл бұрын
Best crash course I've seen yet. Really helpful in terms of explaining how things actually work as opposed to giving template code as most "tutorials" do. Thanks very much!
@jaroslavr22704 жыл бұрын
For me auth()->attempt is not working, I have to use Auth::attempt() Any idea?
@tanvirhasan64234 жыл бұрын
same, for me it's not working
@martinmtandi3354 жыл бұрын
same with me
@manlioguitar4 жыл бұрын
If using the below doesn't work: auth()->attempt($request->only('email', 'password')); This should fix your issue: $credentials = $request->only(['email', 'password']); Auth::attempt($credentials); PS: remember to import the following: use Illuminate\Support\Facades\Auth;
@tanvirhasan64234 жыл бұрын
@@manlioguitar yeah that fixes the error but still my user isn't authenticated or signed in. my users can register, their data stored in the database but still cannot login or when i checked dd() in dashboard, it doesn't give be user details
@manlioguitar4 жыл бұрын
@@tanvirhasan6423 without seeing your code I cannot tell you exactly what's the issue, but I had one as well this is the code I have for the LoginController: // import use Illuminate\Support\Facades\Auth; // code public function store(Request $request) { $this->validate($request, [ 'email' => 'required|email', 'password' => 'required', ]); $credentials = $request->only(['email', 'password']); if(!Auth::attempt($credentials)){ return back()->with('status', 'Invalid login details'); } return redirect()->route('dashboard'); }
@phpostrich Жыл бұрын
Ran into so many issues creating a project with laravel, for easy setup I found that using docker and laravel sail seems like the best way to get project setup on windows. Tried running things native, then tried wsl, then tried sails, sails worked so I am sticking with it
@hostname473 жыл бұрын
This course is not for beginners ! thanks
@Malithsen3 жыл бұрын
That's one of the best courses on laravel. Thanks Alex and Brad... It was so informative...
He is the reason why I continue my programming I remembered when I watched his tutorial about OOP from scratch that day I started to dream big you are my inspiration
@rjchhetri23704 жыл бұрын
Give me a heart sir brad
@MarksTechVlogs4 жыл бұрын
Having only ever very slightly dipped my toe in the water with Laravel before this was incredibly helpful...although a little too fast to follow along! Thanks for creating it
@devgeorgejr96234 жыл бұрын
For those of you that encountered the error when running npm run dev after adding tailwind. Check out this link: tailwindcss.com/docs/installation#post-css-7-compatibility-build npm uninstall tailwindcss postcss autoprefixer npm install tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9
@gaber424242 жыл бұрын
thanks man
@mosesnandi Жыл бұрын
It worked!
@billy-cg1qq3 жыл бұрын
OMG, your voice is soo cool. I really love your voice. It's so calming and soothing, and that accent "like them posts, post them posts, 'do something' them 'something'. LOL, I think I'll use that from now on. I liked them explanations
@madjedsolt58784 жыл бұрын
First comm. Greetings from Algeria. Can I be able to code in less than one year?!
@Ibenyeugbala4 жыл бұрын
Yea, definitely... consistency and the will is key
@jorgea.garzav46504 жыл бұрын
Knowing no PHP or MySQL at all, and knowing almost nothing of javascript and some html, I learned PHP-My in a couple months, and made my first real project after about 6 months. With pure PHP, worst of all, in dreamweaver, a real pain to code (then I started using notepad++, a real beauty), but no laravel or cake, no jquery, no bootstrap, *no Traversy*, no nothing, just the year 2001, buying a domain was a nightmare, hosting was way more expensive, ADSL was a real crap, and kazaa was my spotiflix. I started learning Laravel like a month ago and I have like 6 exercises finished
@cowdickerson81024 жыл бұрын
wesh khoya?
@rnilu864 жыл бұрын
Wow. Nice to hear from Alex after a long time. Alex and Bucky are my earliest youtube Gurus. :)
@tubun094 жыл бұрын
this should be paid course, Alex (thank god this is not codecourse)
@kamyexol86434 жыл бұрын
This was useful, i had to refresh my memory, i left coding since 2 month bcz of university exams and this helped me a lot Thank you so much Alex!
@pasizdobrekuce4 жыл бұрын
It is such a rarity these days to hear proper English language in software development community.
@mariuspanaitescu73523 жыл бұрын
Big big like. It's incredible how much info you squeezed in 2.5 hours. Thank you!
@wibowomuhmmad2 жыл бұрын
PLEASE ADD ENGLISH SUBTITLE
@kevinnacario3594 жыл бұрын
Thank you so much! This channel is proven to be fastest way to get on track.
@harryhino22674 жыл бұрын
This IS NOT a video for beginners. I am struggling to follow his talking, let alone what he is doing. This needs to be split into a video series so he can SLOW down and explain EXACTLY what he is doing. My quest for a simple "laravel for newbies" video continues.
@collectorX Жыл бұрын
there's another crash course done in the channel which might prolly be easier for u..goodluck
@chevalier56914 жыл бұрын
Up until now I've only read comments saying they somehow get recommended videos about things they want to learn at the time. Now, I've truly felt how that feels like.
@miteshnile73503 жыл бұрын
You are great! I was struggling starting with Laravel and MVC but you made everything so clear! I feel empowered now B) ! Thank you Alex!
@jhalmu Жыл бұрын
Great Success. I made this tutorial with larvel 9 and it worked well. Tailwind was easy with tailwinds help-pages. First I looked Bred's video. It's much easyer to continue now. If your markdown mails fails to render propely, it can be because of auto-correct or you can not edit mail (I used phpstorm) to make rows starting from zero, the tip: make your blade file to be markdown file.
@shankerm39594 жыл бұрын
Something that i have been looking out for, for a long time. Excited to start.
@TristanBailey2 жыл бұрын
You and Jeffery are the best code training voices in the business. Maybe the english swings it too :) thanks for your work.
@scarlettrose83063 жыл бұрын
High nostalgia here, and the fact that he calls them roots, my heart melts. -blake bacon
@soulaimane37294 жыл бұрын
hello , this is alex from php academy and today where going to talk about arrays , i miss old days, i'm a very big fan !! we miss u
@Surroundize Жыл бұрын
Comprehensive Laravel course. Thank you so much Alex!
@ashishdeora85224 жыл бұрын
Alex is my first tutor of php. His php academy was the best
@alixcan4 жыл бұрын
I'm not alone... 🙃
@heinrichlunge81544 жыл бұрын
me too. 😊
@celebritydev14 жыл бұрын
Did anyone notice this is a Mini-Twitter app? It is, except for the follower, following, and messaging functionalities. Following and follower functionality could be implemented in the same way as Like (in this case, between users(auth()->id and the id of the profile that is being viewed by the logged in user when they click the follow button). Then, you could implement messaging using NodeJS and Socket.io if you want. Thanks for such an updated tutorial, Alex. Love 💕 from here. 🤗💕
@codewithlek91344 жыл бұрын
Couldn't ask for a better tutorial 🙏🙏🙏 (thank you both)
@Dennis-pc1vv4 жыл бұрын
Your teaching style really shows how great Laravel is!! Well done 👍👍👍
@daviddantefrank4 жыл бұрын
This is awesome! Been working on learning laravel for a while now..
@jgonsuron4 жыл бұрын
Really good course. I signed up for your yearly package on Code Course. Looking forward to learning more!
@brandymedia4 жыл бұрын
Amazing content - thanks Alex. I've been building with Laravel for a few years and this really helped me further cement my all round knowledge.
@maksymdudyk17183 жыл бұрын
Thank you, Brad, for bringing such a course on your channel.
@venancep57334 жыл бұрын
Wow! I see Mr Garreth and Travesy. Thank you very much my amaizing, wonderful and great tutors :)