Skip to content

Instantly share code, notes, and snippets.

@minthemiddle
Created July 9, 2020 20:09
Show Gist options
  • Select an option

  • Save minthemiddle/a017278eeee370c151722d2bbf797846 to your computer and use it in GitHub Desktop.

Select an option

Save minthemiddle/a017278eeee370c151722d2bbf797846 to your computer and use it in GitHub Desktop.
Markdium-Lessons Learnt: PHPUnit for Beginners
// Controller
public function store(Request $request)
{
Product::create($request->all());
return redirect()->route('home');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment