| 1 | <?php |
||
| 7 | class HomeController extends Controller |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var ProductsRepository |
||
| 11 | */ |
||
| 12 | protected $products; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * HomeController constructor. |
||
| 16 | * @param ProductsRepository $productsRepository |
||
| 17 | */ |
||
| 18 | public function __construct(ProductsRepository $productsRepository) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
| 25 | */ |
||
| 26 | public function index() |
||
| 37 | |||
| 38 | } |