Setting.php 293 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Http\Livewire;
  3. use Livewire\Component;
  4. class Setting extends Component
  5. {
  6. public $type = 'anagrafica';
  7. public function render()
  8. {
  9. return view('livewire.settings');
  10. }
  11. public function change($type)
  12. {
  13. $this->type = $type;
  14. }
  15. }