where('status_name', $name)->first(); return $row['status_id'] ?? null; } public function getStatusNameById(int $id): ?string { $row = $this->find($id); return $row['status_name'] ?? null; } }