ModelName::whereIn('id', [array of ids])
->update(['deleted_at' => now()]);
DB::table('table_name')->whereIn('id', [array of ids])
->update([
'deleted_at' => now()
]);
class Clientes extends Model{ use SoftDeletes; protected $dates = ['deleted_at'];}