I was searching for making a GROUP BY name Eloquent ORM docs but I haven\'t find anything, neither on google.
GROUP BY name
Does anyone know if it\'s possible ? or sh
try: ->unique('column')
->unique('column')
example:
$users = User::get()->unique('column');