. * * @link https://www.librenms.org * * @copyright 2020 Thomas Berberich * @author Thomas Berberich */ namespace App\Models; use Illuminate\Database\Eloquent\Model; class Poller extends Model { public $timestamps = false; protected $primaryKey = 'id'; protected $fillable = ['poller_name']; }