Skip to content

Instantly share code, notes, and snippets.

@avosalmon
Created December 4, 2018 14:49
Show Gist options
  • Save avosalmon/e9d4c10a2c439359e7095bf6faf68633 to your computer and use it in GitHub Desktop.
Save avosalmon/e9d4c10a2c439359e7095bf6faf68633 to your computer and use it in GitHub Desktop.
ProductController after refactoring
<?php
class ProductController extends Controller
{
public function show($id)
{
$product = $this->products->findOrFail($id);
return ProductResponse($product);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment