larapack / voyager-hooks
Hooks integrated in Voyager
Installs: 1 439 032
Dependents: 30
Suggesters: 0
Security: 0
Stars: 208
Watchers: 8
Forks: 22
Open Issues: 6
Requires
- larapack/hooks: ~1.0.2
Requires (Dev)
- orchestra/testbench: >=3.0
README
Made with ❤️ by Mark Topper
Voyager Hooks
Hooks system integrated into Voyager.
Installation
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.