Skip to content

Instantly share code, notes, and snippets.

@jaggy
Last active May 28, 2017 01:26
Show Gist options
  • Save jaggy/4c7f9b0027cdf9db3b6fa0503bffed03 to your computer and use it in GitHub Desktop.
Save jaggy/4c7f9b0027cdf9db3b6fa0503bffed03 to your computer and use it in GitHub Desktop.
<?php
use App\Repository;
class StarRepositoryController extends Controller
{
public function store(Repository $repository)
{
// star the repo.
}
public function destroy(Repository $repository)
{
// remove the star
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment