Laravel: Filter out users created more than three months ago
P粉115840076
2023-08-27 23:01:14
<p>In my Laravel application, I want to get all user records where the "created_at" timestamp is three months earlier than the current date. Is this possible using the Eloquent query builder? </p>
First, you can use Carbon to get the date 3 months ago.
Then we need all the records before that. So, the query should be -