我在laravel 5.2中创建了3个auth,
管理员 - >管理员,
网站 - >夫妇,供应商。
并使用此代码在网站中查找Auth:
@if(Auth::guard('vendor')->check())
<li><a href="{{ Route('vendor.dashboard.index') }}">Vendor profile</a></li>
@endif
@if(Auth::guard('couple')->check())
<li><a href="{{ Route('couple.dashboard.index') }}">couple profile</a></li>
@endif
@if(Auth::guard('couple')->check() != true && Auth::guard('vendor')->check() != true )
<li><a href="{{ Route('register') }}">Register</a></li>
<li><a href="{{ Route('login') }}">Login</a></li>
@else
<li><a href="{{ Route('logout') }}">Exit</a></li>
@endif
但是这段代码错了!
如何检查供应商Auth并在我的项目中结合Auth?