Thank you so much for this amazing Laravel tutorial! Your explanations are clear, detailed, and easy to follow, even for someone like me who is revisiting programming after a long time. This is by far the best Laravel course I have come across. Keep up the great work!
@TechChannel-ho4xn8 ай бұрын
Thank you for your wonderful tutorial for beginners like me! Great work👍
@yelocode7 ай бұрын
Thanks for watching. Glad to hear that.
@bryonswanson6326 Жыл бұрын
Thank you for all your great work!
@yelocode Жыл бұрын
Thanks for watching, glad the videos are helpful.
@jonasbirkelof3614 Жыл бұрын
Would love to see a more advanced role based tuorial!
@yelocode Жыл бұрын
Thanks for watching. Will try to make a playlist of videos for this for sure.
@skia515 Жыл бұрын
1:04 can please tell me how can I use another file (not just web.php or api.php) for other route directory as you pointed? 'cause I made a file named admin.php in routes folder and import Illuminate route and use Route::get('/admin', ...) . but not worked
@yelocode Жыл бұрын
You need to register your new admin.php fine in the RouteServiceProvider.php file something like below should work: Route::middleware('web') ->group(base_path('routes/admin.php')); I do the same thing on this video : kzbin.info/www/bejne/emjdpaNofpeLmZofeature=shared&t=417
@skia515 Жыл бұрын
@@yelocode thanks man, your work is grate, you are best
@yudanadhika44792 ай бұрын
im here using laravel herd to create my project, it doesnt have its own kernel.php file, can i make and configure the file itself, or is it preconfigured by the herd environment, or is there a way to go around it?
@kouzokiodin36236 ай бұрын
Thank you so much
@yelocode6 ай бұрын
Thanks for watching.
@WEESPlayzZz Жыл бұрын
We can do it with jetstream with more security ❤❤
@yelocode Жыл бұрын
Thanks for watching 🙏
@jhuvelcolina38903 ай бұрын
Can you do a tutorial on uploading laravel project in freehosting
@LoneTaha9 ай бұрын
so useful. thanks!
@eramitgupta271 Жыл бұрын
Can you create real time charts? Laravel Livewire small project please 🙏
@yelocode Жыл бұрын
Have charts planned, hopefully can get the video out soon
@WEESPlayzZz Жыл бұрын
Simple way 😊
@ousssika5359 Жыл бұрын
i just want to point it out, you can still access the login page and register page , when your are already logedIN
@yelocode Жыл бұрын
Thanks for letting me know, will try to fix that in upcoming videos.
@agneldominique352 Жыл бұрын
Thanks again
@yelocode Жыл бұрын
Thanks for watching
@ShadiMuhammad6 ай бұрын
Good job Alex Could you please tell me the VSCode theme name/ id? 😃 ... Btw, you can set the folder name while creating the controller & it'll be created automatically 👉 Admin\\DashboardController - You can also click on "New File..." icon and add the full path of the file and VSCode will create all the non-existing folders 👉 admins/index.blade.php ... Keep It Up Man, and don't forget the theme name✌
@skia515 Жыл бұрын
6:03 I just knew add is_admin column is a just way to make a user admin, if it's another way, please make another videos for it. thanks
@yelocode Жыл бұрын
You can also use a role based approach, where each use has an assigned role ex: admin, user and if needed you can also add permissions to that system. There is a package that can help make this easier : github.com/spatie/laravel-permission For the role based approach I cover it on this video (it's for a different course though) : kzbin.info/www/bejne/r6DWq3-GnNOomrc It might be helpful to you