From 30bc4a0cf3dbc57f9e4b3cde25efecc6e2dfc7af Mon Sep 17 00:00:00 2001 From: kusowl Date: Thu, 26 Feb 2026 16:05:03 +0530 Subject: [PATCH] chore: add command to generate actions use `artisan make:action ` to generate final & readonly php class with execute method. --- .../Console/Commands/MakeActionCommand.php | 32 +++++++++++++++++++ backend/stubs/action.stub | 14 ++++++++ 2 files changed, 46 insertions(+) create mode 100644 backend/app/Console/Commands/MakeActionCommand.php create mode 100644 backend/stubs/action.stub diff --git a/backend/app/Console/Commands/MakeActionCommand.php b/backend/app/Console/Commands/MakeActionCommand.php new file mode 100644 index 0000000..88aa3a4 --- /dev/null +++ b/backend/app/Console/Commands/MakeActionCommand.php @@ -0,0 +1,32 @@ +