You've already forked Epicnabbo-Catalogus-Updated-Daily
12 lines
198 B
PHP
12 lines
198 B
PHP
<?php
|
|
|
|
namespace App\Models\Compositions;
|
|
|
|
trait HasNotificationUrl
|
|
{
|
|
public function getNotificationUrl(): string
|
|
{
|
|
return route('articles.show', [$this->id, $this->slug]);
|
|
}
|
|
}
|