i am new to laravel and object oriented programming and thanks to you i am able to learn important stuff while creating a project!
@yelocode11 ай бұрын
Glad I could help!
@kadirertan86649 ай бұрын
Great video! redirect()->back() can be used as redirect()->route("dashboard") in this situation.
@RustyPack-fm2gi8 ай бұрын
or use to_route() its convenient though
@tmcxp10 ай бұрын
it's all coming together! very fun teaching method
@CaLiMeRoOo92Ай бұрын
Thank you, Man you are INCREDIBLE
@yelocodeАй бұрын
Thanks for the kind words, glad you like it!
@bomingyu7247 Жыл бұрын
I love your video man!
@yelocode Жыл бұрын
Thanks for watching.
@charlkannel2 ай бұрын
Thank you man
@kouzokiodin36236 ай бұрын
Well Explained thx
@Xtapodi2710 ай бұрын
In the video, didn't you forget to add a name field "idea" in your textarea by any chance? In my code it coudn't work without it. Thank you!
@yelocode10 ай бұрын
I think this is something we fix in the upcoming videos
@nguynthhng18 ай бұрын
why didn't you use the concept "component" in your project? I have to find a another Laravel tutorial playlist to learn more about it. Sorry for my bad English, its not my mother language
@zadulhassan74387 ай бұрын
Hi there. Here is my Model Class:
@minhphou5 ай бұрын
You can add (use App/Models/Idea;) into IdeaController
@francodosha4 ай бұрын
I'm following this tutorial with laravel 11 so you will encounter an error on the IdeaController and the solution is public function store(Request $request) { $idea = new Idea([ "content" => $request->get('idea', ' '), ]); $idea->save(); return redirect()->route('dashboard'); } } 'request()-> get' doesn't work anymore in laravel 11