Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
23 | public function index(Content $content) |
||
24 | { |
||
25 | $content=$content->header(__('admin.settings.index.header')); |
||
26 | $content=$content->description(__('admin.settings.index.description')); |
||
27 | if (request()->isMethod('post')) { |
||
28 | $this->writeSettings(); |
||
29 | admin_toastr(__('admin.settings.tooltip.success.message'), 'success'); |
||
30 | } |
||
31 | return $content->body($this->form()); |
||
32 | } |
||
57 |