livewire testing

This commit is contained in:
2026-02-07 09:47:37 +03:30
parent 5d0198fa9e
commit 6c7855cb7d
10 changed files with 336 additions and 108 deletions

View File

@@ -0,0 +1,14 @@
<div class="p-8">
<h1 class="text-3xl font-bold text-blue-600">Simple Test</h1>
<p class="mt-4 text-lg">{{ $message }}</p>
<button wire:click="changeMessage"
class="mt-4 bg-blue-500 text-white px-4 py-2 rounded">
Click to Test
</button>
<p class="mt-6 text-gray-600">
If this changes when clicked, Livewire works!
</p>
</div>