Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created November 19, 2021 13:59
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 cursosdesarrolloweb/3101e7e2d27104dca31b2ed6957c9c22 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/3101e7e2d27104dca31b2ed6957c9c22 to your computer and use it in GitHub Desktop.
<?php
protected function gate()
{
Gate::define('viewHorizon', function ($user) {
return in_array($user->email, [
'app@cursosdesarrolloweb.es',
]);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment