Loading...
Loading...
Create and register small, pure helper functions when they improve clarity; keep them organized and tested
npx skill4agent add noartem/skills laravel-custom-helpers// app/Support/helpers.php
function money(int $cents): string { return number_format($cents / 100, 2); }composer.json{
"autoload": { "files": ["app/Support/helpers.php"] }
}composer dump-autoload