我如何添加 link 以便当我 select 下拉菜单中的一个元素时我被重定向到你的页面

how do i add a link so that when i select an element in my dropdown menu i get redirected to thee page

当我从我所有 post 的下拉列表中 select 一个 post 时,我试图能够被重定向到 post 所在的页面s.

目前,我已经设法用所有 post 标题填充了列表,并且我已将 link 以 a 的形式添加到列表中的每个元素,但是当我单击在其中一个元素上没有任何反应。

这是我用来填充列表的代码:

<div class="col-md-10">
    <select class="form-control" id="post" name="post" required focus>
        @foreach($post as $posts)
            @if($posts->user_id == Auth::user()->id)
                <option value="/posts/{{$posts->id}}" selected>
                    <a href="/posts/{{$posts->id}}">
                        {{$posts->title}}
                    </a>
                </option>
             @endif       
         @endforeach
     </select> 
</div>

我需要重定向的页面格式如下:

/posts/id

其中 id 是 post id

我该怎么做?

你必须这样使用

<a class="dropdown-item" href="{{url('')}}/posts/{{$posts->id}}">{{$posts->title}}</a>