Skip to content

Instantly share code, notes, and snippets.

@tujlaky
Last active November 4, 2019 09:57
Show Gist options
  • Save tujlaky/dbb4678b73561513248df7aa21c70a80 to your computer and use it in GitHub Desktop.
Save tujlaky/dbb4678b73561513248df7aa21c70a80 to your computer and use it in GitHub Desktop.
Laravel routing conventions
<?php
class ExampleController extends Controller
{
// GET /entities
public function index() {}
// GET /entities/:id
public function show($id) {}
// POST /entities
public function store() {}
// PATCH /entities/:id
public function update() {}
// DELETE /entities/:id
public function destroy($id) {}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment