/**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     Schema::drop(Follow::pivotTable());
 }
예제 #2
0
파일: FollowTrait.php 프로젝트: hkan/follow
 /**
  * @return mixed
  */
 public function followers()
 {
     return $this->belongsToMany(Follow::userModel(), Follow::pivotTable(), 'follow_id', 'user_id');
 }