I have a table with several records containing data over time. Each row has the default timestamp created_at and some data fields.
How can i retrieve all records from the table from a specific date, regardless of time? For example I would like to get all data records from 22nd march 2015.
The created_at field has values like 2015-03-22 14:13:52, 2015-03-22 14:23:52, 2015-03-22 14:33:52 and so on. Can I use some kind of wildcard for the seconds in my Eloquent query?.