. * * @package LibreNMS * @link http://librenms.org * @copyright 2019 Tony Murray * @author Tony Murray */ namespace App\Models; class DeviceAttrib extends DeviceRelatedModel { protected $table = 'devices_attribs'; protected $primaryKey = 'attrib_id'; public $timestamps = false; protected $fillable = ['attrib_type', 'attrib_value']; }