Example #1
0
 /**
  * Displays cheap products.
  *
  * @return \Illuminate\Http\Response
  */
 public function cheap()
 {
     $products = Product::cheap()->paginate(config('settings.products.results'));
     $this->addSEOTagsFoCheap();
     $this->setCanonicalURL(route('home'));
     return view('frontend.products.all', compact('products'));
 }