. * * @package LibreNMS * @link http://librenms.org * @copyright 2018 Neil Lathwood * @author Neil Lathwood */ namespace App\Models; class AlertTemplate extends BaseModel { public $timestamps = false; // ---- Define Relationships ---- public function map() { return $this->hasMany(\App\Models\AlertTemplateMap::class, 'alert_templates_id', 'id'); } }