You've already forked Atomcms-edit
14 lines
224 B
PHP
Executable File
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]);
|
|
}
|
|
}
|