Exemplo n.º 1
0
 public function getDisplayPortAttribute()
 {
     $port = $this->port;
     $forward = PortForward::where('destination_port', $port)->first();
     if ($forward != null) {
         return $forward->starting_port;
     }
     return $port;
 }