【Laravel】artisanのmake:castコマンドを解説

チートシート

Laravel 10.xのartisanの「make:cast」コマンドを解説します。

Description

新しいカスタムEloquentキャストクラスを作成します。

Usage

php artisan make:cast [-f|--force] [--inbound] [--] <name>

Arguments

引数必須説明
name必須キャスト名

Options

オプション省略形必須説明
forcef-キャストが既に存在する場合でもクラスを作成する
inbound--インバウンドキャストクラスを生成

Example

no options

php artisan make:cast Foo
   INFO  Cast [app/Casts/Foo.php] created successfully.  

Stub

OptionStub file name
-cast.stub
inboundcast.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.

コメント

タイトルとURLをコピーしました