hooks icon indicating copy to clipboard operation
hooks copied to clipboard

[Feature Request] Hooks lookup

Open marktopper opened this issue 8 years ago • 0 comments

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, name or type)

marktopper avatar Feb 13 '17 14:02 marktopper