*/ use HasFactory; use SoftDeletes; /** * The relationship between a license and mod. * * @return HasMany */ public function mods(): HasMany { return $this->hasMany(Mod::class) ->chaperone(); } }