. * * @package LibreNMS * @link http://librenms.org * @copyright 2018 Tony Murray * @author Tony Murray */ namespace App\Models; use Illuminate\Database\Eloquent\Model; class Widget extends Model { public $timestamps = false; protected $primaryKey = 'widget_id'; protected $fillable = ['widget_title', 'widget', 'base_dimensions']; }