⬇️Installation

Getting started with Helpify is a straightforward process. Follow these steps to integrate the package into your Laravel project:

Requirements

  • Minimum Laravel 7

composer require piscarocarlos/helpify

This 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?