An open API service indexing awesome lists of open source software.

https://github.com/larapack/voyager-hooks

Hooks system integrated into Voyager.
https://github.com/larapack/voyager-hooks

hooks laravel laravel-5-package laravel-package laravel-packages voyager voyager-hooks

Last synced: 3 months ago
JSON representation

Hooks system integrated into Voyager.

Awesome Lists containing this project

README

        

![Voyager Hooks](https://raw.githubusercontent.com/larapack/voyager-hooks/master/logo.png)


Build Status
Build Status
Total Downloads
Latest Stable Version
License

Made with ❤️ by [Mark Topper](https://marktopper.com)

# Voyager Hooks

[Hooks](https://github.com/larapack/hooks) system integrated into [Voyager](https://github.com/the-control-group/voyager).

# Installation

Install using composer:

```
composer require larapack/voyager-hooks
```

Then add the service provider to the configuration (optional on Laravel 5.5+):

```php
'providers' => [
Larapack\VoyagerHooks\VoyagerHooksServiceProvider::class,
],
```

In order for Voyager to automatically check for updates of hooks, add the following to your console kernel:

```php
protected function schedule(Schedule $schedule)
{
$schedule->command('hook:check')->sundays()->at('03:00');
}
```

That's it! You can now visit your Voyager admin panel and see a new menu item called `Hooks` have been added.