auth page udpate

This commit is contained in:
2026-04-06 22:36:10 -05:00
parent 91bc9778b2
commit 2c1e502b16

View File

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