-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
Description
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
-
Filter hook by type (types:Dropped for nowgithub,private-github,codecanyon) - Filter by tags
- Order hooks (by
downloads,views,nameortype)
G3z