php artisan key:generate
建vendor
composer install
建立controller
php artisan make:controller PostsController --resource
安裝migration資料表
php artisan migrate:install
新建立model post的資料表
artisan make:migration {action}_{table}_table --create=posts php artisan make:migration --create=students create_students_table
在posts表上,更動資料表
artisan make:migration {action}_{table}_table --table=posts
建立資料表
php artisan migrate (會先跑install)
建立model
artisan make:model Post
跑seeder
php artisan db:seed
建立policy
php artisan make:policy {PolicyName} --model={Model}記得去註冊它
// app/Providers/AuthServiceProvider.php
沒有留言:
張貼留言