ekart/backend/stubs/action.stub
kusowl 30bc4a0cf3 chore: add command to generate actions
use `artisan make:action <name>` to generate final & readonly php class with execute method.
2026-02-26 16:05:03 +05:30

15 lines
184 B
Plaintext

<?php
namespace {{ namespace }};
final readonly class {{ class }}
{
/**
* Execute the action.
*/
public function execute()
{
// Your logic here
}
}