Skip to content

Instantly share code, notes, and snippets.

@BrightnBubbly
Created April 28, 2020 02:34
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 BrightnBubbly/07227d49dacfea89fb24375db98ab1dc to your computer and use it in GitHub Desktop.
Save BrightnBubbly/07227d49dacfea89fb24375db98ab1dc to your computer and use it in GitHub Desktop.
public function handle($request, Closure $next)
{
if (!auth()->user()->is_admin) {
return redirect()->route('home');
}
return $next($request);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment