bouncer = $bouncer; } /** * Set the proper Bouncer scope for the incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { $user = $request->user(); $tenantId = $request->header('company') ? $request->header('company') : $user->companies()->first()->id; $this->bouncer->scope()->to($tenantId); return $next($request); } }