This commit is contained in:
2024-06-21 19:27:40 +02:00
parent 813874a847
commit 071eb18792
32 changed files with 285 additions and 1654 deletions

19
app/Livewire/Menu.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
namespace App\Livewire;
use Livewire\Component;
class Menu extends Component
{
public string $title;
public function mount(?string $title) : void {
$this->title = $title ?? config('app.name');
}
public function render()
{
return view('livewire.menu');
}
}