Obtenha os últimos 30 dias recordes em Laravel
use Carbon\Carbon;
$users = DB::table("users")
->select('id')
->where('accounttype', 'standard')
->where('created_at', '>', now()->subDays(30)->endOfDay())
->all();
Sharifur Robin