laravel:custom-helpers

Installation
SKILL.md

Custom Helpers

Create a helper file

// app/Support/helpers.php
function money(int $cents): string { return number_format($cents / 100, 2); }

Autoload

Add to composer.json:

{
  "autoload": { "files": ["app/Support/helpers.php"] }
}
Installs
76
GitHub Stars
139
First Seen
Jan 21, 2026
laravel:custom-helpers — jpcaparas/superpowers-laravel