for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PragmaRX\Tracker\Vendor\Laravel\Models;
class Referer extends Base
{
protected $table = 'tracker_referers';
protected $fillable = [
'url',
'host',
'domain_id',
'medium',
'source',
'search_terms_hash',
];
public function domain()
return $this->belongsTo($this->getConfig()->get('domain_model'));
}