예제 #1
0
 /**
  * Gets a random product.
  *
  * @return \Illuminate\Http\Response
  */
 public function random()
 {
     $product = Product::random();
     $this->addSEOTagsForRandom($product);
     return view('frontend.products.show', compact('product'));
 }