laravel中url的条件

qkf9rpyu  于 2021-10-10  发布在  Java
关注(0)|答案(1)|浏览(310)

我的网址是 http://127.0.0.1:8000/notifications/2 . 我试图把条件在视图(刀片)文件如下。

@if (request()->routeIs('notifications/*'))
//some code
@endif

但它不起作用。
我该怎么做?

hfwmuf9z

hfwmuf9z1#

你需要:

@if (request()->segment(0) == 'notifications')
   //some code
@endif

段是从索引0开始的数组。在上面的url中, segment(0)notificationssegment(1)2

相关问题