コード例 #1
0
ファイル: Node.php プロジェクト: SharkIng/ss-panel
 public function getLastNodeOnlineLog()
 {
     $id = $this->attributes['id'];
     $log = NodeOnlineLog::where('node_id', $id)->orderBy('id', 'desc')->first();
     if ($log == null) {
         return null;
     }
     return $log;
 }