Installation


Install

Pull the package in using composer.

composer require joskolenberg/laravel-jory

{warning} Laravel Jory 2.0 requires Laravel 5.8 or higher. Use the 3.x version for Laravel 7.x and up.

Publish Config

Optionally you can publish the config file to tweak some settings.

php artisan vendor:publish --provider="JosKolenberg\LaravelJory\JoryServiceProvider"

Create Facade Alias

And if you want to use the facade with an alias you can add it to your aliases array in the app.php config file.

'aliases' => [
    ...
    'Jory' => JosKolenberg\LaravelJory\Facades\Jory::class,

],