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 - How to retrieve a variable from the Apache configuration inside the module? -

c# - Constructor arguments cannot be passed for interface mocks -

python - malformed header from script index.py Bad header -