This package consolidates a set of commonly used utility functions for Laravel. It aims to streamline development by providing practical and reusable tools for common tasks. Whether it's string manipulation, date handling, or other routine operations, this helper package simplifies developers' lives by centralizing these essential functionalities.
You can install the package via composer:
composer require piscarocarlos/helpifyAnd then, if using Laravel 5, include the service provider within config/app.php.
'providers' => [
Piscarocarlos\Helpify\HelpifyServiceProvider::class,
];And, for convenience, add a facade alias to this same file at the bottom:
'aliases' => [
'Helpify' => Piscarocarlos\Helpify\Facades\Helpify::class,
];use Helpify\Helpers;
$url = 'https://www.example.com';
$shortenedURL = short_url($url);
// OR
$shortenedURL = Helpers::short_url($url);composer testPlease see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.