Laravel Commands

Laravel Commands
composer create-project --prefer-dist laravel/laravel blog "5.8.*"

php artisan serve --port=8080 

Model , Controller and Migration 

php artisan make:model --migration --controller Testt --resource

php artisan make:model Product

php artisan make:controller ProductController  --resource

php artisan make:migration create_migration_table --create="tablename"

php artisan migrate

php artisan migrate:refresh


Comments

Popular posts from this blog

API

Encryption and Decryption By PHP

Seeder