eb57be730b
- 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
24 lines
494 B
PHP
24 lines
494 B
PHP
<?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'));
|
|
}
|
|
}
|