What problem does it solve? This Skill removes the guesswork from creating reusable helper classes in Laravel applications by providing the correct artisan commands, naming conventions, directory structures, and implementation patterns for the Laravel Dynamic Helpers package. ## Core Features & Use Cases - Helper Generation: Generate helper classes with php artisan make:helper, including nested helpers like Store/CreateHelper that auto-create directory structures. - Dependency Injection: Build helpers with constructor-injected repositories and services that resolve automatically from the Laravel container. - Common Patterns: Apply ready-made templates for API response formatting, data transformation, currency handling, and business logic helpers. - Use Case: Imagine you need a permission-checking utility across your app. Use this Skill to generate a PermissionHelper with injected repositories, then call permissionHelper()->can('edit-posts') anywhere in controllers or middleware. ## Quick Start Ask the AI to create a new Laravel helper class named MoneyHelper with a format method using the make:helper artisan command.