'integer', 'breach_minutes' => 'integer', 'scope' => 'array', 'is_active' => 'boolean']; } public function creator(): BelongsTo { return $this->belongsTo(User::class, 'created_by'); } public function breaches(): HasMany { return $this->hasMany(SlaBreach::class); } }