From 463faa92ffd949b96d455b76e811822ca2171f55 Mon Sep 17 00:00:00 2001 From: Romain 'Maz' BILLOIR Date: Wed, 6 Oct 2021 17:43:10 +0200 Subject: [PATCH] Details about --with-translations on create:plugin Related to https://github.com/wintercms/storm/pull/36 --- console-scaffolding.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/console-scaffolding.md b/console-scaffolding.md index 9fd716af..a02fb843 100644 --- a/console-scaffolding.md +++ b/console-scaffolding.md @@ -30,6 +30,10 @@ The `create:plugin` command generates a plugin folder and basic files for the pl php artisan create:plugin Acme.Blog +> Note: If you plan to translate your plugin in multiple languages, you can add the `--with-translations` option to the command to generate the plugin's files with basic internationalization keys and the current app locale lang file as the starting point for your plugin development. +> ``` +> php artisan create:plugin Acme.Blog --with-translations +> ``` ### Create a Component