LoginSignup
1
0

More than 5 years have passed since last update.

Laravel artisan generate系コマンドのメモ

Last updated at Posted at 2018-10-21

Controller

php artisan make:controller XyzController

namespace付きの場合

php artisan make:controller Abc\\XyzController

Model

php artisan make:model Xyz

Resource

※ Resource ・・・ レンダリング用に出力を整形するクラス

  • 単体
php artisan make:resource XyzResource
  • コレクション
php artisan make:resource XyzResourceCollection

Policy

※ Policy ・・・ レンダリング用に出力を整形するクラス

php artisan make:policy XyzPolicy
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0