auth page udpate

This commit is contained in:
2026-04-06 22:35:04 -05:00
parent 3336f32abe
commit 91bc9778b2

View File

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