LoginSignup
0
0

More than 3 years have passed since last update.

ターミナルでPHPファイルを作成する場合

Posted at

サーバーを起動している場合は、まず停止をする。

$ Ctrl + c

作成例

extends controllerに作成

$ php artisan make:controller HelloController

PersonController.phpファイルが作成される。
格納先:app/Http/Controllers/PersonController.php

extends modelに作成

$ php artisan make:model Person

Person.phpファイルが作成される。
格納先App/Person.php

Controller created successfully.が表示されたら、作成が成功している。

0
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
0
0