. * * @package LibreNMS * @link http://librenms.org * @copyright 2020 Thomas Berberich * @author Thomas Berberich */ namespace App\Models; use Illuminate\Database\Eloquent\Model; class PollerCluster extends Model { public $timestamps = false; protected $table = 'poller_cluster'; protected $primaryKey = 'id'; protected $fillable = ['poller_name']; public function stats() { return $this->hasMany('App\Models\PollerClusterStat', 'parent_poller', 'id'); } }