| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 15 | public function __invoke(Request $request)  | 
            ||
| 16 |     { | 
            ||
| 17 |         return view('search.index', [ | 
            ||
| 18 | 'page_title' => "Search",  | 
            ||
| 19 |             'site_title' => config("app.name"), | 
            ||
| 20 | 'navigation' => null,  | 
            ||
| 21 |             'search_key' => $request->input('q'), | 
            ||
| 22 |             'search_category' => $request->input('tab','problems'), | 
            ||
| 23 |             'page' => $request->input('page',1) | 
            ||
| 24 | ]);  | 
            ||
| 27 |