Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # USER MODEL
- public function isOnline()
- {
- return $this->accounting()->latest('ts')->limit(1)->select('rtype');
- }
- # CONTROLLER
- $isOnline = $user->isOnline()->pluck('rtype')->toArray();
- if (isset($isOnline[0]) && $isOnline[0] === 'Alive') {
- $info[] = 'Online';
- } else {
- $info[] = 'Offline';
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement