ynievesdotnet / adminpanel-hooks
Hooks integrated in AdminPanel
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/ynievesdotnet/adminpanel-hooks
Requires
- larapack/hooks: ~1.0.2
Requires (Dev)
- orchestra/testbench: >=3.0
This package is auto-updated.
Last update: 2025-10-21 23:32:10 UTC
README
Made with ❤️ by Mark Topper Maintained by Yoinier Hernández
AdminPanel Hooks
Hooks system integrated into AdminPanel.
Installation
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.