Laravel刀片有条件地分配css类

时间:2017-10-02 18:57:20

标签: php laravel

如果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

1 个答案:

答案 0 :(得分:3)

请求中的is方法可以检查网址是否与模式匹配。您可以将*字符用作通配符:

<body @if(Request::is('login/*') || Request::is('auth/reset-password')) class="auth-container" @endif>