Laravel 10.xのartisanの「make:cast」コマンドを解説します。
Description
新しいカスタムEloquentキャストクラスを作成します。
Usage
php artisan make:cast [-f|--force] [--inbound] [--] <name>
Arguments
引数 | 必須 | 説明 |
---|---|---|
name | 必須 | キャスト名 |
Options
オプション | 省略形 | 必須 | 説明 |
---|---|---|---|
force | f | - | キャストが既に存在する場合でもクラスを作成する |
inbound | - | - | インバウンドキャストクラスを生成 |
Example
no options
php artisan make:cast Foo
INFO Cast [app/Casts/Foo.php] created successfully.
Stub
Option | Stub file name |
---|---|
- | cast.stub |
inbound | cast.inbound.stub |
Source
10.x
framework/src/Illuminate/Foundation/Console/CastMakeCommand.php at 11.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
11.x
framework/src/Illuminate/Foundation/Console/CastMakeCommand.php at 11.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
コメント