Ejemplo n.º 1
0
 public function index(ProductService $product)
 {
     $this->data['filters'] = $this->getFilters();
     $this->data['new_items'] = $product->newlyAdded();
     $this->data['half_priced'] = $product->halfPriced();
     return view('site.index', $this->data);
 }