auth page udpate
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user