use CarbonCarbon;
$users = DB::table("users")
->select('id')
->where('accounttype', 'standard')
->where('created_at', '>', now()->subDays(30)->endOfDay())
->all();
$date = Carbon::now()->subDays(7);
$users = User::where('created_at', '>=', $date)->get();
dd($users);