Posted in PHP onOctober 22, 2019
废话不多说,直接上代码!
@if ($user->id !== Auth::user()->id) <div id="follow_form"> @if (Auth::user()->isFollowing($user->id)) <form action="{{ route('followers.destroy', $user->id) }}" method="post"> {{ csrf_field() }} {{ method_field('DELETE') }} <button type="submit" class="btn btn-sm">取消关注</button> </form> @else <form action="{{ route('followers.store', $user->id) }}" method="post"> {{ csrf_field() }} <button type="submit" class="btn btn-sm btn-primary">关注</button> </form> @endif </div> @endif
通过显示不同的视图实现。
以上这篇在Laravel 中实现是否关注的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
在Laravel 中实现是否关注的示例
- Author -
刘俊涛的博客声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@