Files
Epicnabbo-Catalogus-Updated…/Updated_Cms/app/Models/Compositions/HasNotificationUrl.php
T
2026-01-07 19:32:43 +01:00

12 lines
198 B
PHP

<?php
namespace App\Models\Compositions;
trait HasNotificationUrl
{
public function getNotificationUrl(): string
{
return route('articles.show', [$this->id, $this->slug]);
}
}