Support the ongoing development of Laravel.io →
posted 10 years ago
Eloquent
Last updated 2 years ago.
0

Columns should be in an array or as individual parameters. Try:

public function scopeGroupByMonth($query)
{
    return $query->select(array('*', DB::raw('MONTH(display_date) as `month`'), DB::raw('YEAR(display_date) as `year`'), DB::raw('sum(value) as `sum`')))
        ->groupBy('user_id', 'month', 'year');
}
Last updated 2 years ago.
0

it works. thanks!

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

alainbelez alainbelez Joined 11 Feb 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.