Menu
About LCS
Artisan Console
It is the command line interface included with Laravel
To check available routes in application
Artisan command to check available routes in applicationphp artisan route:list
Topic:
Executing Commands
3 years ago
To make api resource controller which excludes create and edit actions
php artisan make:controller Api/TaskController --api
Topic:
Executing Commands
3 years ago
Creating migration, controller, factory, seeder with Model
With php artisan command creating migration, controller, factory, seeder with Model is a piece of cake. It can be done...
Topic:
Executing Commands
3 years ago
Creating everything within one command
There is a magic configuration which helps to create everything such as controller, resource controller, model, migration, factory, seeder, request,...
Topic:
Executing Commands
3 years ago