Skip to content

Instantly share code, notes, and snippets.

@nataliaconde
Last active May 15, 2023 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nataliaconde/d43aaca7bb09f05d31556a3c1aff38e3 to your computer and use it in GitHub Desktop.
Save nataliaconde/d43aaca7bb09f05d31556a3c1aff38e3 to your computer and use it in GitHub Desktop.
if (Gate::any(['can-post', 'delete-post'], $post)) {
// The user is authorized to update and delete the post…
}
if (Gate::none(['can-post', 'delete-post'], $post)) {
// The user cannot update or delete the post…
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment