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