Files
Atomcms-edit/app/Models/Compositions/HasNotificationUrl.php
T
2026-05-09 17:32:17 +02:00

14 lines
224 B
PHP
Executable File

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