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!
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
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 : th-cam.com/video/D7ztp2I2Xc8/w-d-xo.htmlfeature=shared&t=417
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?
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✌
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) : th-cam.com/video/yoszLPgnudU/w-d-xo.html It might be helpful to you
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!
Thank you for your wonderful tutorial for beginners like me! Great work👍
Thanks for watching. Glad to hear that.
Thank you for all your great work!
Thanks for watching, glad the videos are helpful.
Would love to see a more advanced role based tuorial!
Thanks for watching. Will try to make a playlist of videos for this for sure.
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
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 : th-cam.com/video/D7ztp2I2Xc8/w-d-xo.htmlfeature=shared&t=417
@@yelocode thanks man, your work is grate, you are best
Thank you so much
Thanks for watching.
Simple way 😊
so useful. thanks!
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?
Thanks again
Thanks for watching
i just want to point it out, you can still access the login page and register page , when your are already logedIN
Thanks for letting me know, will try to fix that in upcoming videos.
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✌
❤❤❤
Thanks for watching
We can do it with jetstream with more security ❤❤
Thanks for watching 🙏
Can you do a tutorial on uploading laravel project in freehosting
Thanks! ❤
You're welcome 😊
Can you create real time charts? Laravel Livewire small project please 🙏
Have charts planned, hopefully can get the video out soon
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
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) : th-cam.com/video/yoszLPgnudU/w-d-xo.html
It might be helpful to you
@@yelocode thanks. damet garm
🙏
Kernel.php in laravel 11.22.0 does not exist