hooks
hooks copied to clipboard
[Feature Request] Hooks lookup
It will be possible to do some hook lookups.
$search = Hooks::search('Foobar') // Search for `Foobar`
->tag('voyager') // Find only hooks with the `voyager` tag
->orderBy('downloads')
->get();
$hooks = $search->items();
- [ ] Search for hooks
- [x] ~Filter hook by type (types:
github,private-github,codecanyon)~ Dropped for now - [ ] Filter by tags
- [ ] Order hooks (by
downloads,views,nameortype)