d2d.emegrendeles.hu/app/Http/Controllers/LegacyLayoutController.php
2026-05-06 21:07:36 +02:00

26 lines
569 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\RedirectResponse;
use Illuminate\View\View;
class LegacyLayoutController extends Controller
{
public function show(string $path = ''): View|RedirectResponse
{
if (! auth()->check()) {
return redirect()->route('login');
}
$targetUrl = $path !== ''
? url($path)
: route('dashboard.index');
return view('layout.core', [
'site' => env('APP_STAGE', 'DEV'),
'initialUrl' => $targetUrl,
]);
}
}