polishing
linter / quality (push) Failing after 1m2s
tests / ci (8.3) (push) Failing after 47s
tests / ci (8.4) (push) Failing after 1m5s
tests / ci (8.5) (push) Failing after 1m5s

This commit is contained in:
Daan Meijer
2026-06-22 15:21:27 +02:00
parent f3d5be6a80
commit 77c3e34d5b
10 changed files with 52 additions and 10 deletions
+4
View File
@@ -22,4 +22,8 @@ class Chat extends Model
{
return $this->hasMany(Message::class);
}
public function getSubjectUrlAttribute(): string {
return $this->chatable?->url ?? '';
}
}
+4
View File
@@ -60,4 +60,8 @@ class Dynamic extends Model
{
return 'uuid';
}
public function getUrlAttribute(): string {
return route('dynamics.show', $this);
}
}
+4
View File
@@ -55,4 +55,8 @@ class Ledger extends Model
{
return 'uuid';
}
public function getUrlAttribute(): string {
return route('dynamics.ledgers.show', $this);
}
}
+4
View File
@@ -41,4 +41,8 @@ class Message extends Model
{
return $this->morphMany(Media::class, 'mediable');
}
public function getSubjectUrlAttribute(): string {
return $this->subject->url ?? '';
}
}