🎉 Enjoying this package? Consider sponsoring me on GitHub or buying me a beer.
Installation
Requirements
- PHP 8.1 or higher
- Composer
Installation
You can install the package via composer:
1composer require rappasoft/laravel-helpers
Version Compatibility
- Version 3.0+: PHP 8.1+, Laravel 10/11/12 compatible
- Version 2.x: PHP 7.3-8.0, Laravel 8 compatible
After Installation
Once installed, all helper functions are automatically available in your project. No additional configuration is required!
1<?php2 3require 'vendor/autoload.php';4 5// All helpers are now available!6$slug = str_slug('Hello World'); // "hello-world"7$array = array_get($data, 'user.name');8$isEmpty = blank($value);