auth page udpate

This commit is contained in:
2026-04-06 22:40:15 -05:00
parent b4b9d7c3f9
commit 150438daa1

View File

@@ -102,21 +102,21 @@ class User extends Authenticatable
public function srpOpen() {
return SRPShips::where([
'character_id' => $this->character_id,
'approved' => 'Under Review',
'approval' => 'Under Review',
])->count();
}
public function srpDenied() {
return SRPShips::where([
'character_id' => $this->character_id,
'approved' => 'Denied',
'approval' => 'Denied',
])->count();
}
public function srpApproved() {
return SRPShips::where([
'character_id' => $this->character_id,
'approved' => 'Approved',
'approval' => 'Approved',
])->count();
}
}