skip to Main Content

Get daily data for Laravel 5.4 – Phpmyadmin

I want to get daily data from my database. I try 2 code and both are not working for me. $sales=Sale::whereDate('created_at', '=', Carbon::today()); The error that I got: Class 'AppHttpControllersCarbon' not found and when I try $sales=Sale::whereDay('created_at', now()->day)->get(); The error…

VIEW QUESTION
Back To Top
Search