@dixitchopra I don't think you want Eloquent for things like reports. Apart from that, it is pretty basic query, so what do you have problem with here?
Apr 6, 2015
3
Level 3
Find monthly Sale in Eloquent
How can I write the following in Eloquent or is there any other way to find monthly sales group by Date? Can I also use limit here like 20 records in results?
SELECT DATE(created_at) AS date, SUM(final_amount) AS total_sales
FROM bills
GROUP BY date
Please or to participate in this conversation.