Setting.php 409 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace App\Http\Livewire;
  3. use Livewire\Component;
  4. class Setting extends Component
  5. {
  6. public $type = 'anagrafica';
  7. public function mount()
  8. {
  9. if (isset($_GET["type"]))
  10. $this->type = $_GET["type"];
  11. }
  12. public function render()
  13. {
  14. return view('livewire.settings');
  15. }
  16. public function change($type)
  17. {
  18. $this->type = $type;
  19. }
  20. }