当前位置:首页 > CMS教程 > 其它CMS > 列表

在Laravel 中实现是否关注的示例

发布:smiling 来源: PHP粉丝网  添加日期:2022-01-15 19:39:01 浏览: 评论:0 

今天小编就为大家分享一篇在Laravel 中实现是否关注的示例,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧。

废话不多说,直接上代码!

  1. @if ($user->id !== Auth::user()->id) 
  2.  
  3. <div id="follow_form"
  4.  
  5. @if (Auth::user()->isFollowing($user->id)) 
  6.  
  7. <form action="{{ route('followers.destroy', $user->id) }}" method="post"
  8.  
  9. {{ csrf_field() }} 
  10.  
  11. {{ method_field('DELETE') }} 
  12.  
  13. <button type="submit" class="btn btn-sm">取消关注</button> 
  14.  
  15. </form> 
  16.  
  17. @else 
  18.  
  19. <form action="{{ route('followers.store', $user->id) }}" method="post"
  20.  
  21. {{ csrf_field() }} 
  22.  
  23. <button type="submit" class="btn btn-sm btn-primary">关注</button> 
  24.  
  25. </form> 
  26.  
  27. @endif 
  28.  
  29. </div> 
  30.  
  31. @endif 

通过显示不同的视图实现。

Tags: Laravel是否关注

分享到: