Fix session same_site to use env, fix Article model import, remove unused traits

This commit is contained in:
root
2026-05-26 16:59:49 +02:00
parent d8ea6d214f
commit c0077a6039
5 changed files with 3 additions and 80 deletions
@@ -1,13 +0,0 @@
<?php
declare(strict_types=1);
namespace App\Models\Compositions;
trait HasNotificationUrl
{
public function getNotificationUrl(): string
{
return route('articles.show', [$this->id, $this->slug]);
}
}