ynievesdotnet/adminpanel-hooks is a Laravel package for hooks integrated in adminpanel.
It currently has 0 GitHub stars and 24 downloads on Packagist (latest version v1.0.1).
Install it with composer require ynievesdotnet/adminpanel-hooks.
Discover more Laravel packages by ynievesdotnet
or browse all Laravel packages to compare alternatives.
Last updated
Made with ❤️ by Mark Topper Maintained by Yoinier Hernández
Hooks system integrated into AdminPanel.
Install using composer:
composer require ynievesdotnet/adminpanel-hooks
Then add the service provider to the configuration (optional on Laravel 5.5+):
'providers' => [
YnievesDotNet\AdminPanelHooks\AdminPanelHooksServiceProvider::class,
],
In order for AdminPanel 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 AdminPanel admin panel and see a new menu item called Hooks have been added.