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

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -