Skip to content
Hooks system integrated into Voyager.
Branch: master
Clone or download
Pull request Compare This branch is even with larapack:master.
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
publishable/config
resources/views
src Include AuthorizesRequests Trait Feb 6, 2019
tests Apply fixes from StyleCI Jun 28, 2017
.gitattributes Inital upload Dec 20, 2016
.gitignore
.php_cs
.travis.yml Inital upload Dec 20, 2016
ISSUE_TEMPLATE Add Voyager version Sep 21, 2017
LICENSE
README.md Laravel 5.5.* package auto-discovery Oct 18, 2017
composer.json Force version that supports setup event Jan 16, 2018
logo.png
phpunit.xml Inital upload Dec 20, 2016

README.md

Voyager Hooks

Build Status Build Status Total Downloads Latest Stable Version License

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.

You can’t perform that action at this time.