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