su-secret-santa/resources/views/livewire/pages/profile.blade.php

21 lines
282 B
PHP

<?php
use function Livewire\Volt\state;
use App\Models\Participant;
$props = ['token'];
$token = 0;
state([
'count' => 0,
'user' => Participant::find($token),
]);
$increment = fn () => $this->count++;
?>
<div>
<h1>User: {{$user?->name ?? 'Not found'}}</h1>
</div>