You can use normal mysql operators for the comparison. For example, if you want to check if the created_at field is older than 2 days ago, you can do something like this
$latest = User::where("type", "seeker")->whereNull('deleted_at')->whereRaw("DATEDIFF(NOW(), created_at) > ?", [10])->get(); // users created > 10 days ago