2023-12-10 16:10:32 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Livewire;
|
|
|
|
|
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class Themeswitch extends Component
|
|
|
|
{
|
|
|
|
|
|
|
|
public function light()
|
|
|
|
{
|
2023-12-14 12:30:49 -05:00
|
|
|
session()->put('preferred_theme', 'light');
|
2023-12-10 16:10:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function dark()
|
|
|
|
{
|
2023-12-14 12:30:49 -05:00
|
|
|
session()->put('preferred_theme', 'dark');
|
2023-12-10 16:10:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return view('livewire.themeswitch');
|
|
|
|
}
|
|
|
|
}
|