Created
June 30, 2017 07:07
-
-
Save tisuchi/a705e6d81308d9d6133954a3827404f2 to your computer and use it in GitHub Desktop.
Laravel fetch results grouped by days // larademy.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $users =DB::table('users') | |
| ->select(DB::raw('DATE(created_at) as date'), DB::raw('count(*) as views')) | |
| ->groupBy('date') | |
| ->get(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment