Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ChadTaljaardt/e2671d7cd2fa26f98a0dfa3f00895359 to your computer and use it in GitHub Desktop.
Save ChadTaljaardt/e2671d7cd2fa26f98a0dfa3f00895359 to your computer and use it in GitHub Desktop.
public function getProductDetails($slug)
{
$products = Product::where('slug', $slug)->get();
return view('frontend.pages.details', ['products' => $products]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment