mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 09:11:10 -05:00
9 lines
407 B
PHP
9 lines
407 B
PHP
<div class="flex flex-col items-center justify-center p-6 space-y-4">
|
|
<h1 class="text-4xl font-bold">{{ $count }}</h1>
|
|
|
|
<div class="flex space-x-4">
|
|
<button wire:click="increment" class="px-4 py-2 text-white bg-blue-500 rounded hover:bg-blue-600">+</button>
|
|
<button wire:click="decrement" class="px-4 py-2 text-white bg-red-500 rounded hover:bg-red-600">-</button>
|
|
</div>
|
|
</div>
|