public function view($slug)
 {
     $product = Product::where('slug', '=', $slug)->get()->first();
     //Get Product Price @todo
     $price = $product->getPrice();
     return view('front.product.view')->with('product', $product)->with('price', $price);
 }