right_menu.blade.php 1.1 KB

1234567891011121314151617181920
  1. <div class="col-xs-12 col-md-3 side">
  2. <div class="widget-messages mt-30">
  3. <a class="widget-message-item @if(request()->route()->getName() == 'auth.doing.index') active @endif" href="{{ route('auth.doing.index') }}">
  4. 最新动态
  5. </a>
  6. <a class="widget-message-item @if(request()->route()->getName() == 'auth.notification.index') active @endif" href="{{ route('auth.notification.index') }}">
  7. 我的通知
  8. </a>
  9. <a class="widget-message-item @if(request()->route()->getName() == 'auth.message.index') active @endif" href="{{ route('auth.message.index') }}">
  10. 我的私信
  11. </a>
  12. <a class="widget-message-item @if(request()->route()->getName() == 'auth.questionInvitation.index') active @endif" href="{{ route('auth.questionInvitation.index') }}">
  13. 邀请我回答的
  14. </a>
  15. {{-- <a class="widget-message-item @if(request()->route()->getName() == 'shop.exchange.index') active @endif" href="{{ route('shop.exchange.index') }}">--}}
  16. {{-- 我的兑换--}}
  17. {{-- </a>--}}
  18. </div>
  19. </div>