chore(deps): upgrade dependencies (#7524)

This commit is contained in:
Alexis Saettler
2025-01-29 10:47:16 +01:00
committed by GitHub
parent 0400350b4f
commit 2e083767db
250 changed files with 3166 additions and 2895 deletions
+5 -1
View File
@@ -16,7 +16,7 @@ class ModuleRow extends Model
/**
* The attributes that are mass assignable.
*
* @var array<int,string>
* @var list<string>
*/
protected $fillable = [
'module_id',
@@ -25,6 +25,8 @@ class ModuleRow extends Model
/**
* Get the module associated with the module.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\Module, $this>
*/
public function module(): BelongsTo
{
@@ -33,6 +35,8 @@ class ModuleRow extends Model
/**
* Get the module row fields associated with the module.
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany<\App\Models\ModuleRowField, $this>
*/
public function fields(): HasMany
{