有什么方法可以在 <a> 标签中发送 METHOD 值

is there any way to send METHOD value in <a> tag

当我使用 <a> 向 edit() 发送编辑请求时,由于 'GET',它可以正常工作,但是对于删除,我还必须向 Delete 方法发送请求,如何我可以不使用像 edit

这样的形式发送它
<a href="/auctions/{{$auction->id}}/edit" class="btn btn-info">Edit</a>
<form action="{{url('/auctions',$auction->id)}}" method="POST">
        @csrf
        @method('DELETE')
       <input type="submit" class="btn btn-danger"
value="Delete">
</form>

我只想知道我们可以通过 <a> 或 Not

发送 METHOD 值

通过 <a href="">link</a> 对链接的点击始终是 GET 请求,不能是其他任何内容。