feat(layout): Layout-Einstellungen, Dark-Mode, Logo, Hilfe-Menü

- Settings Key-Value Store (DB + Cache)
- Einstellungen → Layout: Seitenname, Logo, Button-Farbe, Dark/Light-Mode
- Hilfe-Menü (Ebene 0): Handbuch + Changelog im Browser
- Navigation erweitert: Einstellungen-Dropdown + Hilfe-Dropdown
- CHANGELOG v0.4.0

Version: 0.4.0
This commit is contained in:
2026-06-29 14:15:41 +02:00
parent 69ce876138
commit eb57be730b
18 changed files with 613 additions and 24 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
namespace App\Http\Controllers;
use Illuminate\View\View;
class HelpController extends Controller
{
public function manual(): View
{
return view('help.manual');
}
public function changelog(): View
{
$changelogPath = base_path('CHANGELOG.md');
$content = file_exists($changelogPath)
? file_get_contents($changelogPath)
: 'Kein Changelog gefunden.';
return view('help.changelog', compact('content'));
}
}