kalebalebachew / my-laravel-utils
Helper functions I use in my Laravel projects
Package info
github.com/kalebalebachew/my-laravel-utils
pkg:composer/kalebalebachew/my-laravel-utils
dev-main
2025-09-10 11:41 UTC
Requires
- php: >=8.0
- illuminate/http: ^9.0|^10.0|^11.0|^12.0
- illuminate/support: ^9.0|^10.0|^11.0|^12.0
This package is auto-updated.
Last update: 2026-03-10 13:04:37 UTC
README
A small collection of PHP/Laravel helper functions I use for my personal projects.
Instead of copy-pasting the same code across apps, I maintain them here as a package.
More helpers will be added over time.
Installation
composer require kalebalebachew/my-laravel-utils
Supported Functions
parseMultiParam(string $key): array
Get all values for a query parameter using a comma-separated format.
👉 See FUNCTIONS.md for usage examples.