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"] }
}
Related skills
Installs
20
Repository
noartem/skills
GitHub Stars
9
First Seen
Jan 30, 2026