| Package Data | |
|---|---|
| Maintainer Username: | marktopper |
| Maintainer Contact: | mark@ulties.com (Mark Topper) |
| Package Create Date: | 2016-12-20 |
| Package Last Update: | 2020-03-04 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-27 03:22:24 |
| Package Statistics | |
|---|---|
| Total Downloads: | 1,480,982 |
| Monthly Downloads: | 3,544 |
| Daily Downloads: | 103 |
| Total Stars: | 207 |
| Total Watchers: | 6 |
| Total Forks: | 22 |
| Total Open Issues: | 6 |

Made with ❤️ by Mark Topper
Hooks system integrated into Voyager.
Install using composer:
composer require larapack/voyager-hooks
Then add the service provider to the configuration (optional on Laravel 5.5+):
'providers' => [
Larapack\VoyagerHooks\VoyagerHooksServiceProvider::class,
],
In order for Voyager to automatically check for updates of hooks, add the following to your console kernel:
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.