Cost units can be edited

This commit is contained in:
2026-02-08 20:06:38 +01:00
parent 6fc65e195c
commit bccfc11687
53 changed files with 2021 additions and 29 deletions

View File

@@ -22,11 +22,16 @@ final class InertiaProvider
}
public function render() : Response {
if (null !== session()->get('message')) {
$this->props['message'] = session()->get('message');
session()->forget('message');
}
$this->props['availableLocalGroups'] = Tenant::where(['is_active_local_group' => true])->get();
return Inertia::render(
str_replace('/', '/Views/', $this->vueFile),
$this->props
);
}
}