. * * @link https://www.librenms.org * * @copyright 2018 Tony Murray * @author Tony Murray * @author Peca Nesovanovic */ namespace App\Models; class Ipv6Address extends PortRelatedModel { public $timestamps = false; protected $primaryKey = 'ipv6_address_id'; protected $fillable = [ 'ipv6_address', 'ipv6_compressed', 'ipv6_prefixlen', 'ipv6_origin', 'ipv6_network_id', 'port_id', 'context_name', ]; }