廢話不多說,直接上代碼!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
@ 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 中實現是否關注的示例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持服務器之家。
原文鏈接:https://www.cnblogs.com/lovebing/p/8183938.html