Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 laravel 7 中使用 livewire 1.3 / turbolinks:5.2 / alpine@v2 定义当前 url 以选择当前菜单项(刀片/引导程序 4)?
您可以使用以下代码:
<li class="{{ Request::is('products*') ? 'active' : '' }}"> <a href="{{ route('products.index') }}"><span>Products</span></a> .... </li>