mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 06:11:09 -05:00
25 lines
384 B
PHP
25 lines
384 B
PHP
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use Livewire\Component;
|
|
|
|
class AuthMenuComponent extends Component
|
|
{
|
|
public bool $isOpen = false;
|
|
|
|
public function toggle()
|
|
{
|
|
$this->isOpen = !$this->isOpen;
|
|
}
|
|
|
|
public function close()
|
|
{
|
|
$this->isOpen = false;
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.auth-menu-component');
|
|
}
|
|
} |