From ac08999e50c0395428ed47df6364b7e0cb859761 Mon Sep 17 00:00:00 2001 From: ali Date: Sun, 31 Dec 2023 18:14:30 +0300 Subject: [PATCH] Edit the config file to specific the namespace and the suffix --- config/data.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/config/data.php b/config/data.php index 6a0c70862..cf144eb8c 100644 --- a/config/data.php +++ b/config/data.php @@ -87,4 +87,15 @@ 'root_namespace' => null, ], ], + + /** + * It is possible to specif the namespace of the created Data Class + * using make:data command and also the suffix + */ + 'commands' => [ + 'make' => [ + 'namespace' => 'Data', + 'suffix' => 'Data', + ], + ], ];