21 lines
850 B
PHP
21 lines
850 B
PHP
<x-layouts.auth>
|
|
<div class="flex flex-col gap-6 p-8 bg-white rounded-lg shadow-lg max-w-md mx-auto">
|
|
<h1 class="text-2xl font-bold text-gray-900 text-center">Einfacher Test</h1>
|
|
|
|
<p class="text-gray-600 text-center">Diese Seite funktioniert ohne Volt/Livewire</p>
|
|
|
|
<div class="mt-4 p-4 bg-green-100 rounded text-sm">
|
|
<h2 class="font-semibold mb-2">Erfolg!</h2>
|
|
<p>Das Layout funktioniert korrekt.</p>
|
|
</div>
|
|
|
|
<div class="mt-4 p-4 bg-blue-100 rounded text-sm">
|
|
<h2 class="font-semibold mb-2">Informationen:</h2>
|
|
<ul class="space-y-1">
|
|
<li><strong>Route:</strong> {{ request()->url() }}</li>
|
|
<li><strong>Domain:</strong> {{ request()->getHost() }}</li>
|
|
<li><strong>Method:</strong> {{ request()->method() }}</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</x-layouts.auth>
|