Laravel Crash Course

  Рет қаралды 636,534

Traversy Media

Traversy Media

Күн бұрын

Пікірлер: 998
@TraversyMedia
@TraversyMedia 4 жыл бұрын
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 :)
@calebmbugua745
@calebmbugua745 4 жыл бұрын
woow..thanks brad for bringing alex to teach us more of Laravel.
@akankhaahmed
@akankhaahmed 4 жыл бұрын
same here
@muhammadainuddin4650
@muhammadainuddin4650 4 жыл бұрын
Hey Brad, can you please also do a PHP crash course?
@cubedev4838
@cubedev4838 4 жыл бұрын
Alex dont have utube channel?
@TraversyMedia
@TraversyMedia 4 жыл бұрын
@@cubedev4838 I think he focuses mostly on his website, but here is the link. Ill also add in the description -kzbin.info/door/pOIUW62tnJTtpWFABxWZ8g
@ffr3ak
@ffr3ak 4 жыл бұрын
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
@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_Eagle
@Stoney_Eagle 4 жыл бұрын
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.
@javaprogrammingmastery
@javaprogrammingmastery 3 жыл бұрын
codesnipeet.com/laravel-8-0-create-generate-slug-example/ codesnipeet.com/laravel-8-0-form-validation-example/ codesnipeet.com/laravel-8-0-ajax-form-validation-example/ codesnipeet.com/laravel-8-0-image-upload-example/ codesnipeet.com/laravel-image-validation-example/ codesnipeet.com/how-to-create-a-custom-error-page-in-laravel-8-0/ codesnipeet.com/laravel-8-0-clear-cache-of-route-view-config-command-example/ codesnipeet.com/laravel-8-0-pdf-laravel-8-0-generate-pdf-file-example/ codesnipeet.com/laravel-8-0-socialite-login-with-google-account-example/ codesnipeet.com/drag-drop-file-upload-in-laravel-8-0-using-dropzone-js/ codesnipeet.com/laravel-8-0-resource-routing-example/ codesnipeet.com/laravel-8-0-get-country-city-address-from-ip-address-example/ codesnipeet.com/how-to-get-random-records-in-laravel/ codesnipeet.com/laravel-get-next-previous-post/ codesnipeet.com/create-dummy-data-using-laravel-tinker/ codesnipeet.com/failed-to-create-laravel-project-solution100-working/
@Stoney_Eagle
@Stoney_Eagle 3 жыл бұрын
@@shaynhacker5746 If you are a bit more specific, maybe I can help.
@Stoney_Eagle
@Stoney_Eagle 3 жыл бұрын
@@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. 😉
@ambrosedavid4001
@ambrosedavid4001 3 жыл бұрын
@@Stoney_Eagle wow you really broke this down
@ambrosedavid4001
@ambrosedavid4001 3 жыл бұрын
@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
@michaelo4u
@michaelo4u 3 жыл бұрын
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".
@amarjanovic989
@amarjanovic989 3 жыл бұрын
Thank you very much!
@stratos8320
@stratos8320 3 жыл бұрын
thank you
@Morgan-vz6oo
@Morgan-vz6oo 2 жыл бұрын
Thank you!
@ontheruntonowhere
@ontheruntonowhere 2 жыл бұрын
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
@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.
@Redragon2501
@Redragon2501 2 жыл бұрын
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!
@FacePlat3
@FacePlat3 4 жыл бұрын
Damn... This was the first web dev course I have ever finished watching and follow through and that makes me feel accomplished :)
@pallyweb
@pallyweb 3 жыл бұрын
Same here ;)
@tyrellwreleck4226
@tyrellwreleck4226 3 жыл бұрын
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
@kachicelestine9659
@kachicelestine9659 4 жыл бұрын
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
@Knards
@Knards 4 жыл бұрын
Alex is a HUGE part of my early learning. Be hard to find anyone better!
@javaprogrammingmastery
@javaprogrammingmastery 3 жыл бұрын
codesnipeet.com/laravel-8-0-create-generate-slug-example/ codesnipeet.com/laravel-8-0-form-validation-example/ codesnipeet.com/laravel-8-0-ajax-form-validation-example/ codesnipeet.com/laravel-8-0-image-upload-example/ codesnipeet.com/laravel-image-validation-example/ codesnipeet.com/how-to-create-a-custom-error-page-in-laravel-8-0/ codesnipeet.com/laravel-8-0-clear-cache-of-route-view-config-command-example/ codesnipeet.com/laravel-8-0-pdf-laravel-8-0-generate-pdf-file-example/ codesnipeet.com/laravel-8-0-socialite-login-with-google-account-example/ codesnipeet.com/drag-drop-file-upload-in-laravel-8-0-using-dropzone-js/ codesnipeet.com/laravel-8-0-resource-routing-example/ codesnipeet.com/laravel-8-0-get-country-city-address-from-ip-address-example/ codesnipeet.com/how-to-get-random-records-in-laravel/ codesnipeet.com/laravel-get-next-previous-post/ codesnipeet.com/create-dummy-data-using-laravel-tinker/ codesnipeet.com/failed-to-create-laravel-project-solution100-working/
@lokinewborn3696
@lokinewborn3696 3 жыл бұрын
@@javaprogrammingmastery wow man, respect, THANKS A LOT .
@PixiiBomb
@PixiiBomb 4 жыл бұрын
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
@31Tizi
@31Tizi 3 жыл бұрын
Thanks a lot - works great!!
@pokeedmund1016
@pokeedmund1016 2 жыл бұрын
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
@abhijithj2366
@abhijithj2366 4 жыл бұрын
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.
@TraversyMedia
@TraversyMedia 4 жыл бұрын
Yeah, he's one of the OGs. I'm trying to get Bucky here as well :) Good to see he's back doing content
@codewithlek9134
@codewithlek9134 4 жыл бұрын
@@TraversyMedia please bring Bucky 💙
@sitharamadushan8729
@sitharamadushan8729 4 жыл бұрын
@@TraversyMedia It's nice if Bucky is here as well!
@kadershaikh1704
@kadershaikh1704 4 жыл бұрын
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
@folkepalmqvist1620
@folkepalmqvist1620 3 жыл бұрын
Wait, is this Alex from phpacademy? Because of you I now work with my dream job in IT. Big thanks for all your work!
@robiparvez
@robiparvez 4 жыл бұрын
alex is the first teacher that helped fall in love with laravel. He is concise and most importantly always maintains structure.
@dibbyo456
@dibbyo456 3 жыл бұрын
Me too.
@marshallklickman
@marshallklickman 3 жыл бұрын
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.
@deepeshdhakal7476
@deepeshdhakal7476 3 жыл бұрын
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.
@LongySchlongy
@LongySchlongy 4 жыл бұрын
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
@cobb208
@cobb208 4 жыл бұрын
Outstanding! You covered the same amount of information that other tutorials take ~10 hours.
@BusinessWolf1
@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.
@chrisplusplus6232
@chrisplusplus6232 4 жыл бұрын
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.
@shaikhalamin23
@shaikhalamin23 4 жыл бұрын
Alex was my first instructor to learn laravel in 2015. I am glad to see him at here
@TheViPerBlackHawk
@TheViPerBlackHawk 4 жыл бұрын
I was hoping for an updated Laravel and it’s here 😆
@mweb7344
@mweb7344 4 жыл бұрын
Same, this is just awesome
@arielcuesta5520
@arielcuesta5520 4 жыл бұрын
Me too!! Perfect timing for my new project!!!
@edpogi7934
@edpogi7934 3 жыл бұрын
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
@SoliasSerene
@SoliasSerene 4 жыл бұрын
When the presenter right-clicked and chose "import class" for the "Hash" facade @41:31, what plugin/extension gave VS code that ability?
@gsvf
@gsvf 4 жыл бұрын
I found it! The name is PHP Namespace Resolver
@NikhilPatil4u
@NikhilPatil4u 4 жыл бұрын
@@gsvf Thanks For Help
@kennethkipchumba2532
@kennethkipchumba2532 4 жыл бұрын
That also gave me some trouble trying to figure out.
@MrRoubleh
@MrRoubleh 4 жыл бұрын
@@gsvf thanks man
@nbarshain
@nbarshain 3 жыл бұрын
@@gsvf I was looking all over for this! Thank you for finding it!!! @Solias Serene Thank you for asking the question
@rawhasan1180
@rawhasan1180 3 жыл бұрын
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.
@vedam7949
@vedam7949 4 жыл бұрын
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
@Domc360
@Domc360 3 жыл бұрын
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-sg4mg
@Bebe-sg4mg 3 жыл бұрын
@@Domc360 thanks alot
@TGDTom
@TGDTom 3 жыл бұрын
@@Domc360 Thanks dude! Was literally stuck on that for half an hour lol
@rawhasan1180
@rawhasan1180 3 жыл бұрын
@@Domc360 Thanks, buddy! Save the life!! Was dying to sort it out.
@migueldemaria3830
@migueldemaria3830 2 жыл бұрын
@@Domc360 saved my life, thanks!
@saurabhjindal8318
@saurabhjindal8318 3 жыл бұрын
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
@QuentinWatt
@QuentinWatt 4 жыл бұрын
Nice work Alex.
@nwkwok
@nwkwok 3 жыл бұрын
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!
@AnthonyBird
@AnthonyBird 3 жыл бұрын
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()
@ayyantariq321
@ayyantariq321 4 жыл бұрын
Waiting For This Crash Course. Thank You Soo Much Guyz!
@ivyminaywa2386
@ivyminaywa2386 3 жыл бұрын
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
@ricardogilsimoes
@ricardogilsimoes 4 жыл бұрын
This course made my like php so much more! Thank you for your work!
@Idysman
@Idysman 4 жыл бұрын
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.
@MrSiamtea
@MrSiamtea 4 жыл бұрын
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.
@alrifay
@alrifay 4 жыл бұрын
Run this command to delete view cache. php artisan view:clear
@MrSiamtea
@MrSiamtea 4 жыл бұрын
@@alrifay Thanks a lot. It's working 👍🏻👍🏻
@NazmulHo1971
@NazmulHo1971 4 жыл бұрын
​@@alrifay Thanks! It happened to me too.
@jgonsuron
@jgonsuron 4 жыл бұрын
@@alrifay Thanks for the save!
@justicetout
@justicetout 3 жыл бұрын
@@alrifay THANK YOU !
@fablyinspirations7783
@fablyinspirations7783 4 жыл бұрын
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!!
@mtshgaming292
@mtshgaming292 4 жыл бұрын
Am i dreaming laravel crash course in traversy media damn it makes my life easier
@javaprogrammingmastery
@javaprogrammingmastery 3 жыл бұрын
codesnipeet.com/laravel-8-0-create-generate-slug-example/ codesnipeet.com/laravel-8-0-form-validation-example/ codesnipeet.com/laravel-8-0-ajax-form-validation-example/ codesnipeet.com/laravel-8-0-image-upload-example/ codesnipeet.com/laravel-image-validation-example/ codesnipeet.com/how-to-create-a-custom-error-page-in-laravel-8-0/ codesnipeet.com/laravel-8-0-clear-cache-of-route-view-config-command-example/ codesnipeet.com/laravel-8-0-pdf-laravel-8-0-generate-pdf-file-example/ codesnipeet.com/laravel-8-0-socialite-login-with-google-account-example/ codesnipeet.com/drag-drop-file-upload-in-laravel-8-0-using-dropzone-js/ codesnipeet.com/laravel-8-0-resource-routing-example/ codesnipeet.com/laravel-8-0-get-country-city-address-from-ip-address-example/ codesnipeet.com/how-to-get-random-records-in-laravel/ codesnipeet.com/laravel-get-next-previous-post/ codesnipeet.com/create-dummy-data-using-laravel-tinker/ codesnipeet.com/failed-to-create-laravel-project-solution100-working/
@furomin4272
@furomin4272 4 жыл бұрын
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!
@yungifez
@yungifez 4 жыл бұрын
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
@knotcircle2844
@knotcircle2844 2 жыл бұрын
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
@fadifindakly3850
@fadifindakly3850 4 жыл бұрын
What a great tutorial! Thank you for the huge effort you have put in it!!
@24ronin
@24ronin 3 жыл бұрын
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.
@droneArt714
@droneArt714 4 жыл бұрын
If you make a mistake on routing or in view components use this: php artisan route:clear php artisan view:clear
@kurshadqaya1684
@kurshadqaya1684 3 жыл бұрын
You saved me from wasting my time! Thank you!
@KKVinayKumar
@KKVinayKumar 3 жыл бұрын
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.
@AyomideIruobe
@AyomideIruobe 4 жыл бұрын
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?
@AyomideIruobe
@AyomideIruobe 4 жыл бұрын
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 "
@ryantheghost2185
@ryantheghost2185 4 жыл бұрын
@@AyomideIruobe yes.Its best to first uninstall the whole thing then do this.The code is from the official doc of tailwind
@Tube-hn9rc
@Tube-hn9rc 4 жыл бұрын
@@AyomideIruobe Wow Thanks You saved my life good brother for the reply
@dezareo
@dezareo 4 жыл бұрын
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
@GrahamSmart
@GrahamSmart 4 жыл бұрын
@@AyomideIruobe Gah, annoyingly this didnt fix it for me :( still no luck after hours of research, ive given up.
@peksonholinificent7056
@peksonholinificent7056 2 жыл бұрын
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!
@manlioguitar
@manlioguitar 4 жыл бұрын
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);
@cowdickerson8102
@cowdickerson8102 4 жыл бұрын
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?
@TheAzeyHD
@TheAzeyHD 3 жыл бұрын
Thanks a lot!
@nnamanibenjamin5093
@nnamanibenjamin5093 2 жыл бұрын
Am still getting null as I dd(auth()->user()); in my dashboard controller
@andrewabwango8965
@andrewabwango8965 2 жыл бұрын
@@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
@thesoftwarepimpgma Жыл бұрын
this one single video has taught me laravel from start to " i know how this page works " thank you, amazing tutorial
@henkprinsloo1743
@henkprinsloo1743 4 жыл бұрын
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.
@Venezuelangel
@Venezuelangel 3 жыл бұрын
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
@mohammedhamza2123
@mohammedhamza2123 3 жыл бұрын
to be honnest, you deserve a medal for that crash course, for beginners like me it looks like a treasure
@mudso
@mudso 4 жыл бұрын
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
@mikaelstener8024
@mikaelstener8024 4 жыл бұрын
Exactly! Worked for me too.
@ouranhighfan101
@ouranhighfan101 4 жыл бұрын
thank you so much! Finally worked for me :D
@stevenanthony4094
@stevenanthony4094 4 жыл бұрын
tyvm
@106axi
@106axi 4 жыл бұрын
gg
@benl8143
@benl8143 4 жыл бұрын
worked for me too , thx a lot
@alejandrovillanueva4562
@alejandrovillanueva4562 4 жыл бұрын
It's one of the best laravel courses I've ever seen. I hope you publish a second part
@kennethkipchumba2532
@kennethkipchumba2532 4 жыл бұрын
I pray for that too. It would be so awesome.
@MuhammadSaaddev
@MuhammadSaaddev 2 жыл бұрын
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 ! =)
@simonhk
@simonhk 2 жыл бұрын
You have saved the day man!
@jlambert12013
@jlambert12013 2 жыл бұрын
Thanks you so much!
@jlambert12013
@jlambert12013 2 жыл бұрын
This should be the top comment!!!!
@BrunoHorta-dv3we
@BrunoHorta-dv3we Жыл бұрын
thank you, saved me
@sinashariati4412
@sinashariati4412 4 жыл бұрын
This is a really nice tutorial love to see more on laravel & php & vue
@proandy4448
@proandy4448 3 жыл бұрын
This is not a crash course but a full tutorial for an absolute beginner. Many thanks ALEX! you are the best
@silexet-10
@silexet-10 4 жыл бұрын
Nostalgic! Started in PHP Academy, here is where I learned British accent before Peppa Pig 😅
@raik303
@raik303 4 жыл бұрын
Same here nostalgic! 😄 I started learning php from Alex, code academy the year between 2014 and 2016.
@silexet-10
@silexet-10 4 жыл бұрын
@@raik303 same here, using notepad ++ LOL
@DavidAnoff
@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.
@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)?
@JChristoph
@JChristoph 3 жыл бұрын
I was curious about that as well.
@martinhl1
@martinhl1 3 жыл бұрын
Seems to be TablePlus :)
@kamrulahsan06
@kamrulahsan06 2 жыл бұрын
It is postico
@rickybarabba7866
@rickybarabba7866 4 жыл бұрын
Valuable content from Alex Garrett Smith. It covers anything you need to get started with Laravel and Tailwind and even beyond that...
@pacholskigaming8699
@pacholskigaming8699 4 жыл бұрын
WOAH. THIS IS EXACTLY WHAT I WAS LOOKING FOR
@c4sper877
@c4sper877 2 жыл бұрын
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 👍😃👍
@kenpeters1009
@kenpeters1009 4 жыл бұрын
Am a simple guy i see traversy media upload i click
@jakke1975
@jakke1975 3 жыл бұрын
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.
@VikasJo
@VikasJo 4 жыл бұрын
I thought i will go to watch horror movie, but i changed my mind.. Thank you for both :)
@kennethkipchumba2532
@kennethkipchumba2532 4 жыл бұрын
lol
@SoLiDStretchDB
@SoLiDStretchDB 3 жыл бұрын
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!
@jaroslavr2270
@jaroslavr2270 4 жыл бұрын
For me auth()->attempt is not working, I have to use Auth::attempt() Any idea?
@tanvirhasan6423
@tanvirhasan6423 4 жыл бұрын
same, for me it's not working
@martinmtandi335
@martinmtandi335 4 жыл бұрын
same with me
@manlioguitar
@manlioguitar 4 жыл бұрын
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;
@tanvirhasan6423
@tanvirhasan6423 4 жыл бұрын
@@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
@manlioguitar
@manlioguitar 4 жыл бұрын
​@@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
@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
@hostname47
@hostname47 3 жыл бұрын
This course is not for beginners ! thanks
@Malithsen
@Malithsen 3 жыл бұрын
That's one of the best courses on laravel. Thanks Alex and Brad... It was so informative...
@dukewilliams6142
@dukewilliams6142 4 жыл бұрын
please do a course with laravel - jetstream.
@javaprogrammingmastery
@javaprogrammingmastery 3 жыл бұрын
codesnipeet.com/laravel-8-0-create-generate-slug-example/ codesnipeet.com/laravel-8-0-form-validation-example/ codesnipeet.com/laravel-8-0-ajax-form-validation-example/ codesnipeet.com/laravel-8-0-image-upload-example/ codesnipeet.com/laravel-image-validation-example/ codesnipeet.com/how-to-create-a-custom-error-page-in-laravel-8-0/ codesnipeet.com/laravel-8-0-clear-cache-of-route-view-config-command-example/ codesnipeet.com/laravel-8-0-pdf-laravel-8-0-generate-pdf-file-example/ codesnipeet.com/laravel-8-0-socialite-login-with-google-account-example/ codesnipeet.com/drag-drop-file-upload-in-laravel-8-0-using-dropzone-js/ codesnipeet.com/laravel-8-0-resource-routing-example/ codesnipeet.com/laravel-8-0-get-country-city-address-from-ip-address-example/ codesnipeet.com/how-to-get-random-records-in-laravel/ codesnipeet.com/laravel-get-next-previous-post/ codesnipeet.com/create-dummy-data-using-laravel-tinker/ codesnipeet.com/failed-to-create-laravel-project-solution100-working/
@anonysmooth648
@anonysmooth648 2 жыл бұрын
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
@rjchhetri2370
@rjchhetri2370 4 жыл бұрын
Give me a heart sir brad
@MarksTechVlogs
@MarksTechVlogs 4 жыл бұрын
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
@devgeorgejr9623
@devgeorgejr9623 4 жыл бұрын
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
@gaber42424
@gaber42424 2 жыл бұрын
thanks man
@mosesnandi
@mosesnandi Жыл бұрын
It worked!
@billy-cg1qq
@billy-cg1qq 3 жыл бұрын
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
@madjedsolt5878
@madjedsolt5878 4 жыл бұрын
First comm. Greetings from Algeria. Can I be able to code in less than one year?!
@Ibenyeugbala
@Ibenyeugbala 4 жыл бұрын
Yea, definitely... consistency and the will is key
@jorgea.garzav4650
@jorgea.garzav4650 4 жыл бұрын
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
@cowdickerson8102
@cowdickerson8102 4 жыл бұрын
wesh khoya?
@rnilu86
@rnilu86 4 жыл бұрын
Wow. Nice to hear from Alex after a long time. Alex and Bucky are my earliest youtube Gurus. :)
@tubun09
@tubun09 4 жыл бұрын
this should be paid course, Alex (thank god this is not codecourse)
@kamyexol8643
@kamyexol8643 4 жыл бұрын
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!
@pasizdobrekuce
@pasizdobrekuce 4 жыл бұрын
It is such a rarity these days to hear proper English language in software development community.
@mariuspanaitescu7352
@mariuspanaitescu7352 3 жыл бұрын
Big big like. It's incredible how much info you squeezed in 2.5 hours. Thank you!
@wibowomuhmmad
@wibowomuhmmad 2 жыл бұрын
PLEASE ADD ENGLISH SUBTITLE
@kevinnacario359
@kevinnacario359 4 жыл бұрын
Thank you so much! This channel is proven to be fastest way to get on track.
@harryhino2267
@harryhino2267 4 жыл бұрын
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
@collectorX Жыл бұрын
there's another crash course done in the channel which might prolly be easier for u..goodluck
@chevalier5691
@chevalier5691 4 жыл бұрын
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.
@miteshnile7350
@miteshnile7350 3 жыл бұрын
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
@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.
@shankerm3959
@shankerm3959 4 жыл бұрын
Something that i have been looking out for, for a long time. Excited to start.
@TristanBailey
@TristanBailey 2 жыл бұрын
You and Jeffery are the best code training voices in the business. Maybe the english swings it too :) thanks for your work.
@scarlettrose8306
@scarlettrose8306 3 жыл бұрын
High nostalgia here, and the fact that he calls them roots, my heart melts. -blake bacon
@soulaimane3729
@soulaimane3729 4 жыл бұрын
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
@Surroundize Жыл бұрын
Comprehensive Laravel course. Thank you so much Alex!
@ashishdeora8522
@ashishdeora8522 4 жыл бұрын
Alex is my first tutor of php. His php academy was the best
@alixcan
@alixcan 4 жыл бұрын
I'm not alone... 🙃
@heinrichlunge8154
@heinrichlunge8154 4 жыл бұрын
me too. 😊
@celebritydev1
@celebritydev1 4 жыл бұрын
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. 🤗💕
@codewithlek9134
@codewithlek9134 4 жыл бұрын
Couldn't ask for a better tutorial 🙏🙏🙏 (thank you both)
@Dennis-pc1vv
@Dennis-pc1vv 4 жыл бұрын
Your teaching style really shows how great Laravel is!! Well done 👍👍👍
@daviddantefrank
@daviddantefrank 4 жыл бұрын
This is awesome! Been working on learning laravel for a while now..
@jgonsuron
@jgonsuron 4 жыл бұрын
Really good course. I signed up for your yearly package on Code Course. Looking forward to learning more!
@brandymedia
@brandymedia 4 жыл бұрын
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.
@maksymdudyk1718
@maksymdudyk1718 3 жыл бұрын
Thank you, Brad, for bringing such a course on your channel.
@venancep5733
@venancep5733 4 жыл бұрын
Wow! I see Mr Garreth and Travesy. Thank you very much my amaizing, wonderful and great tutors :)
@mouazfmb
@mouazfmb 3 жыл бұрын
Traversy Media and Alex, Thanks for both of you .
Laravel 8 REST API With Sanctum Authentication
54:13
Traversy Media
Рет қаралды 552 М.
Top 20 VS Code Shortcuts
17:00
Traversy Media
Рет қаралды 99 М.
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
ASP.NET Core Crash Course - C# App in One Hour
1:00:44
freeCodeCamp.org
Рет қаралды 1,6 МЛН
Laravel Tutorial For Beginners (Simple User CRUD App)
1:16:13
LearnWebCode
Рет қаралды 214 М.
Junior Code Review: Laravel Routes, Middleware, Validation and more
19:57
React JS Crash Course
1:48:48
Traversy Media
Рет қаралды 3,4 МЛН
DHH discusses SQLite (and Stoicism)
54:00
Aaron Francis
Рет қаралды 105 М.
LARAVEL essentials you need to know in 45 minutes
45:45
Neil Rowe
Рет қаралды 204 М.
Evolution of software architecture with the co-creator of UML (Grady Booch)
1:30:43
The Pragmatic Engineer
Рет қаралды 90 М.
Vue JS Crash Course
1:50:52
Traversy Media
Рет қаралды 1,3 МЛН
Inertia 2.0: It's like Next but better (and you can use React!)
19:02
Theo - t3․gg
Рет қаралды 50 М.
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН