Template PHP Artisan Command

ตัวอย่าง Command ของ php artisan ที่ใช้งานบ่อยๆ ร่วมกับ Laravel Framework

🐴 Key Generate

php artisan key:generate

🦉 Migrate Database

php artisan migrate:fresh
php artisan migrate:refresh --seed

🦣 Make Object

php artisan make:model Example
php artisan make:migration create_example_table
php artisan make:seeder ExampleSeeder
php artisan make:factory ExampleFactory
php artisan make:controller ExampleController
php artisan make:rule ExampleRule

🪸 Check

php artisan --version
php artisan about
php artisan config:show database

🪼 Encrypt Decrypt Environment

🦀 Clear Config

🐧 Maintenance Mode

Last updated