1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Facade\Ignition\Tests\stubs\Components;
- use Livewire\Component;
- class TestLivewireComponent extends Component
- {
- public $string;
- public $stringable;
- public function mount(string $title)
- {
- $this->string = $title;
- }
- public function render()
- {
- return 'nowp';
- }
- public function change()
- {
- $this->string = 'Ruben';
- }
- public function getComputedProperty()
- {
- return 'bla';
- }
- }
|