如果url是/ login或/ auth / reset-password
,我想通过添加auth-container类在我的刀片正文标签中添加一个css类所以我有
<body> //here add class
所以我试过了
@if(in_array( , ['login','/auth/reset-password']) )//stuck here
<body class="auth-container">
@else()
<body> //no class
@endif()
我坚持如何确定网址是否为/login or /auth/reset-password
因此添加了课程auth-container
答案 0 :(得分:3)
请求中的is
方法可以检查网址是否与模式匹配。您可以将*字符用作通配符:
<body @if(Request::is('login/*') || Request::is('auth/reset-password')) class="auth-container" @endif>