| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function termsAndConditions() |
||
| 16 | { |
||
| 17 | $terms = Setting::where('name', 'terms')->where('lang', App::getLocale())->first(); |
||
| 18 | $termsHtml = $terms ? $terms->value : view('components.default-texts.terms')->render(); |
||
| 19 | |||
| 20 | return view('public.terms', [ |
||
| 21 | 'terms' => $termsHtml |
||
| 22 | ]); |
||
| 34 | } |