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.
- Host: GitHub
- URL: https://github.com/larapack/voyager-hooks
- Owner: larapack
- License: mit
- Created: 2016-12-20T17:01:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-03-04T21:36:04.000Z (over 5 years ago)
- Last Synced: 2025-03-15T19:02:52.130Z (4 months ago)
- Topics: hooks, laravel, laravel-5-package, laravel-package, laravel-packages, voyager, voyager-hooks
- Language: PHP
- Size: 67.4 KB
- Stars: 206
- Watchers: 6
- Forks: 22
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

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.