P粉1460805562023-08-28 14:52:12
First, you can use Carbon to get the date 3 months ago.
$date = Carbon::now()->subMonths(3)->format('Y-m-d');
Then we need all the records before that. So, the query should be -
$users = User::where('created_at', '<=', $date)->get();