Skip to content

Instantly share code, notes, and snippets.

@jinoantony
Created January 15, 2019 16:35
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 jinoantony/7cfe0fbae211185ee73060b136e38323 to your computer and use it in GitHub Desktop.
Save jinoantony/7cfe0fbae211185ee73060b136e38323 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Middleware;
use Closure;
class AssignGuard
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next, $guard = null)
{
if($guard != null)
auth()->shouldUse($guard);
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment