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

Popular posts from this blog

C++: Boost interprocess memory mapped file error -

python - IO.UnsupportedOperation: Not Writable -

python - Selecting distinct values from a column in Peewee -