| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function showCategoryPage($categoryId) |
||
| 28 | { |
||
| 29 | $category = FaqCategory::findOrFail($categoryId); |
||
| 30 | $categories = FaqCategory::all(); |
||
| 31 | $articles = $category->articles()->orderByDesc('updated_at')->paginate(15); |
||
| 32 | |||
| 33 | return view('frontend.faq.category_detail', compact('category', 'categories', 'articles')); |
||
| 34 | } |
||
| 44 |