Advertisement

TrimwebsolutionsTrimwebsolutions

Problem and Solutions

How I can get top products from my orders in laravel ?

By M.K. Verma · 2 May 2022

How I can get top products from my orders in laravel ?
Try This

$business->orders()->with(['products'=>function($qu)
    {
        $qu->orderBy('orders_count', 'desc');
        
    }])->get();