Advertisement

TrimwebsolutionsTrimwebsolutions

Problem and Solutions

How to write this query in Laravel Eloquent ?

By M.K. Verma · 2 May 2022

How to write this query in Laravel Eloquent ?

You could try somthing like this

Visitor::select('country')
     ->withCount('id')
     ->groupBy('country')
     ->latest()
     ->get()