How do I get a "select count(*) group by" using laravel eloquent -
i execute follow sentence using laravel eloquent
select *, count(*) reserves group day
the solution occurs me create view in db, pretty sure there way in laravel way.
you use this:
$reserves = db::table('reserves')->selectraw('*, count(*)')->groupby('day');
Comments
Post a Comment