route(); if (!count($params) || in_array(strtolower($request->method()), ['get', 'options']) || $request->rule()->getOption('_lock', true) === false) { return $next($request); } ksort($params); $key = 're:' . $request->rule()->getName() . ':' . implode('-', $params); return app()->make(LockService::class)->exec($key, function () use ($next, $request) { return $next($request); }, 8); } }