初心者です。
laravelでフォロー処理を行なっています。
フォロー、解除する際にフォローしているユーザーなのか、していないユーザーなのかを判断したいです。
またフォローされているかも同じくやりたい次第です。
controller
1 public function follow(User $user) 2 { 3 $follower = Auth::user(); 4 $is_following = $follower->isFollowing($user->id); 5 if(!$is_following){ 6 $follower->follow($user->id); 7 } 8 return back(); 9} 10public function unfollow(User $user) 11 { 12 13 $follower = Auth::user(); 14 $is_following = $follower->isFollowing($user->id); 15 if(!$is_following){ 16 $follower->unfollow($user->id); 17 } 18 19 return back(); 20 }
User
1 public function followers() 2 { 3 return $this->belongsToMany(self::class, 'follows', 'followed_id', 'following_id'); 4 } 5 6 public function follows() 7 { 8 return $this->belongsToMany(self::class, 'follows', 'following_id', 'followed_id'); 9 } 10// フォローする処理 11 public function follow(Int $user_id) 12 { 13 return $this->follows()->attach($user_id); 14 } 15 16 public function unfollow(Int $user_id) 17 { 18 return $this->follows()->detach($user_id); 19 } 20 21 // フォローしているか 22 public function isFollowing(Int $user_id) 23 { 24 return $this->follows()->where('followed_id', $user_id); 25 } 26 27 // フォローされているか 28 public function isFollowed(Int $user_id) 29 { 30 return $this->followers()->where('following_id', $user_id); 31 }
Follows
1<?php 2 3namespace App; 4 5use Illuminate\Database\Eloquent\Model; 6 7class Follows extends Model 8{ 9 protected $fillable = ['following_id', 'followed_id']; 10}
ビューでの条件分岐でもうまく判定できていません。一度フォローを外すと常にフォロー解除のボタンしか出てきません。
データベースは削除されています。
view
1@if(Auth::user()->isFollowing($user->id)) 2 <form method="POST" action="{{ route('unfollow', ['user' => $user->id]) }}"> 3 @csrf 4 <button type="submit" class="btn btn-outline-info btn-sm" style="width: 100%;">フォロー解除</button> 5 </form> 6 @else 7 <form method="POST" action="{{ route('follow', ['user' => $user->id]) }}"> 8 @csrf 9 <button type="submit" class="btn btn-outline-info btn-sm" style="width: 100%;">フォローする</button> 10 </form> 11 @endif
追記
web
1Route::post('/mypage/{user}/follows', 'UserController@follow')->name('follow'); 2Route::post('/mypage/{user}/unfollows', 'UserController@unfollow')->name('unfollow');
migration
1public function up() 2 { 3 Schema::create('follows', function (Blueprint $table) { 4 $table->bigIncrements('id'); 5 $table->bigInteger('following_id')->unsigned(); 6 $table->bigInteger('followed_id')->unsigned(); 7 8 $table->foreign('following_id')->references('id')->on('users')->onDelete('cascade'); 9 $table->foreign('followed_id')->references('id')->on('users')->onDelete('cascade'); 10 $table->timestamps(); 11 }); 12 }
少し質問が雑になってしまい申し訳ありません。
どなたか知恵をお借りしたいです。
よろしくお願いします。
php7.4.2
laravel6.18
回答1件
あなたの回答
tips
プレビュー