crypto = $crypto; } public function handle(Request $request, Closure $next) { // In V2 transition, we allow requests without HMAC to pass through // as long as they have a valid JWT (checked by next middleware). // This maintains compatibility while we update the database schema. return $next($request); } }