publishedSlugExists($candidate)) { $candidate = $base . '-' . $suffix; $suffix++; } return $candidate; } private function publishedSlugExists(string $slug): bool { return DB::table('uploads') ->where('status', 'published') ->where('slug', $slug) ->exists(); } }