Laravel 10.x以降のartisanの「make:event」コマンドを解説します。
Description
新しいイベントクラスを作成します。
Usage
php artisan make:event [-f|--force] [--] <name>
Arguments
引数 | 必須 | 設営 |
---|---|---|
name | 必須 | イベントクラス名 |
Options
オプション | 省略形 | 必須 | 説明 |
---|---|---|---|
force | f | - | イベントが既に存在する場合でも、クラスを作成 |
Examples
no options
php artisan make:event FooEvent
INFO Event [app/Events/FooEvent.php] created successfully.
Source
10.x
framework/src/Illuminate/Foundation/Console/EventMakeCommand.php at 10.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
11.x
framework/src/Illuminate/Foundation/Console/EventMakeCommand.php at 11.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
コメント