auth page udpate

This commit is contained in:
2026-04-06 22:38:08 -05:00
parent 2c1e502b16
commit af4bd102b6

View File

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