removed blade and htmx

This commit is contained in:
2026-05-06 23:16:09 +03:00
parent dff3748623
commit 98efb76f7b
31 changed files with 235 additions and 465 deletions
+3 -1
View File
@@ -23,7 +23,9 @@ class Svelte
mixed $data = [],
): View|Factory {
$context = [];
$context["user"] = toArray($this->authService->getCurrentUser());
$context["user"] = $this->authService->isLoggedIn()
? $this->authService->getCurrentUser()
: null;
$context["view"] = $view;
$context["layout"] = $layout;
$context["title"] = $title;