我的网址是 http://127.0.0.1:8000/notifications/2 . 我试图把条件在视图(刀片)文件如下。
http://127.0.0.1:8000/notifications/2
@if (request()->routeIs('notifications/*')) //some code @endif
但它不起作用。我该怎么做?
hfwmuf9z1#
你需要:
@if (request()->segment(0) == 'notifications') //some code @endif
段是从索引0开始的数组。在上面的url中, segment(0) 将 notifications 及 segment(1) 将 2
segment(0)
notifications
segment(1)
2
1条答案
按热度按时间hfwmuf9z1#
你需要:
段是从索引0开始的数组。在上面的url中,
segment(0)
将notifications
及segment(1)
将2