Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class Manage extends Component |
||
11 | { |
||
12 | public $selectedLang; |
||
13 | public $texts; |
||
14 | |||
15 | public function mount() |
||
19 | } |
||
20 | |||
21 | public function updatedSelectedLang($value) |
||
22 | { |
||
23 | $this->texts = LangManager::getTexts($value); |
||
24 | } |
||
25 | |||
26 | public function render() |
||
27 | { |
||
28 | return view('admin::livewire.translation.manage') |
||
29 | ->layout('admin::layouts.app', ['title' => __('Translation')]); |
||
30 | } |
||
31 | |||
32 | public function update() |
||
37 | } |
||
38 | } |
||
39 |