modified: resources/views/components/simple-home.blade.php

modified:   vite.config.js
This commit is contained in:
2026-02-12 14:58:44 +03:30
parent 6c7855cb7d
commit 46168a2cc5
3 changed files with 36 additions and 33 deletions

View File

@@ -6,15 +6,15 @@
class SimpleHome extends Component
{
public $message = "Hello World!";
public $message = "Hello World!";
public function changeMessage()
{
$this->message = "Livewire is working!";
}
public function changeMessage()
{
$this->message = "Livewire is working! Now hello matin gav khobi?";
}
public function render()
{
return view('components.simple-home');
}
public function render()
{
return view('components.simple-home');
}
}