selahattinunlu / laravel-api-query-builder

Laravel & Lumen Api Query Builder Package
331 stars 66 forks source link

How create a new Custom orderBy? #26

Open hosseinnedaei opened 7 years ago

hosseinnedaei commented 7 years ago

I have a product table and a related visits table that keep visit of products.

how can I create a new custom orderBy so when &order_by=visits_count,desc do this:

$products->withCount('visits')->orderBy('visits_count', 'desc');

and sort products by their visits.