1627160880
In this lesson, we will set up our category controller and routes
Starter Template:
GitHub Link: https://github.com/AngelJayMedia/forum
Timestamps:
0:00 Introduction and setup
0:44 Create category controller
2:15 Create category routes
8:48 Add middleware to category controller
10:54 Test middleware
13:26 Setup dashboard navigation
#laravel
1617089618
Hello everyone! I just updated this tutorial for Laravel 8. In this tutorial, we’ll go through the basics of the Laravel framework by building a simple blogging system. Note that this tutorial is only for beginners who are interested in web development but don’t know where to start. Check it out if you are interested: Laravel Tutorial For Beginners
Laravel is a very powerful framework that follows the MVC structure. It is designed for web developers who need a simple, elegant yet powerful toolkit to build a fully-featured website.
#laravel 8 tutorial #laravel 8 tutorial crud #laravel 8 tutorial point #laravel 8 auth tutorial #laravel 8 project example #laravel 8 tutorial for beginners
1599536794
In this post, i will show you what’s new in laravel 8 version.
https://www.tutsmake.com/laravel-8-new-features-release-notes/
#laravel 8 features #laravel 8 release date #laravel 8 tutorial #news - laravel 8 new features #what's new in laravel 8 #laravel 8 release notes
1623389100
Today, We will see laravel 8 create custom helper function example, as we all know laravel provides many ready mate function in their framework, but many times we need to require our own customized function to use in our project that time we need to create custom helper function, So, here i am show you custom helper function example in laravel 8.
#laravel 8 create custom helper function example #laravel #custom helper function #how to create custom helper in laravel 8 #laravel helper functions #custom helper functions in laravel
1595205933
Hello guys, sometimes while working on the large application, we need to create some very small modules like simple CRUD. So here in this article i will let you know laravel create model migration and controller in a single command.
We will run a single artisan command to create model. migration and controller. We can also create resource controller by giving parameter.
We can these model, migration and controller from three command but for time saving laravel provides feature to create thses three thing by one single command.
So for desired result open your terminal and run the following command.
php artisan make:model --migration --controller Product --resource
Here, we have create product model, migration and product controller with all the resources methods.
We can also write this command in the short form like below.
php artisan make:model -mc Product --resource
You can also write this command in a more short way like below.
php artisan make:model Product -mcr
**Note: **Here, m represents migration, c represents controller and r represents as resource.
After running the above command you will get the output like
Model created successfully
Created migration (migration file name with current date and migration name )
Controller created successfully.
You can also read the article to create to add a column in the existing table through migration by clicking on the link below.
#laravel #create controller resource and model in a command #laravel artisan command #laravel create model #laravel single command for model and migration #migration and controller
1609729452
#laravel #laravel 8 tutoral #laravel 8 tutorial for beginners #laravel 8 tutorial for beginners step by step #laravel 8 tutorial from scratch