如何将 _token 移动到 laravel 中 url 的最后一个

How to shift _token to the last of the url in laravel

你好我想移动URL最后的_token如下图

我得到了什么:

example.com/search?_token=qkPc5aNyEp7tysbyQhZcnjHdP1wi9q&query=php

我想要的:

example.com/search?query=php&_token=qkPc5aNyEp7tysbyQhZcnjHdP1wi9q

我的表单代码是这样的

<form action="search" method="GET">
                                    {!! csrf_field() !!}
                                <div class="main-search-input fl-wrap">
                                    <div class="main-search-input-item">
                                        <input type="text" name="query" value="" placeholder="Search snippets..." required>
                                    </div>
                                    
                                    <button class="main-search-button" type="submit">Search</button>
                                </div>

                                 </form>

将 csrf 字段放在表单的底部,虽然我认为您不需要它。