Actions
Installation
To install, run the console command:
composer require --dev laravel-lang/actions
Usage
Now you can update existing localizations using the lang:update
console command:
php artisan lang:update
We also recommend adding the call code to the post-update-cmd
section of the scripts
block in the composer.json
file:
{
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan lang:update"
]
}
}
This allows localization files to be automatically updated after dependency updates, rather than manually running the php artisan lang:update
console command.
Compatibility
Laravel | PHP | Publisher | Package | Status |
---|---|---|---|---|
10, 11, 12 | 8.1, 8.2, 8.3, 8.4 | 15, 16 |
|
Last modified: 20 February 2025