⬇️Installation
Requirements
Minimum Laravel 7
composer require piscarocarlos/helpifyThis command will automatically download and install the package along with its dependencies.
If who want to use Facades methods then 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,
//---
];Last updated
Was this helpful?