Laravel 10.xのartisanの「lang:publish」コマンドを解説します。
Description
カスタマイズ可能なすべての言語ファイルを公開します。
Usage
php artisan lang:publish [--existing] [--force]
Options
オプション | 省略形 | 必須 | 説明 |
---|---|---|---|
existing | - | - | すでに公開されているファイルのみを公開し、上書きする。 |
force | - | - | 既存のファイルを上書きする |
Example
no options
php artisan lang:publish
INFO Language files published successfully.
lang/enディレクトリが作成され、多言語用ファイルが格納されます。
Source
10.x
framework/src/Illuminate/Foundation/Console/LangPublishCommand.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/LangPublishCommand.php at 11.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
コメント