| Conditions | 1 |
| Paths | 1 |
| Total Lines | 4 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php namespace App\Http\Controllers\Frontend; |
||
| 13 | public function index() |
||
| 14 | { |
||
| 15 | $populairProducts = ProductTagGroupService::selectAllByTagAndShopId(config()->get('app.shop_id'), 'home-populair'); |
||
| 16 | return view('frontend.basic.index')->with(array('populairProducts' => $populairProducts)); |
||
| 17 | } |
||
| 47 | } |