/**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     Schema::drop(Follow::pivotTable());
 }
示例#2
0
 /**
  * @return mixed
  */
 public function followers()
 {
     return $this->belongsToMany(Follow::userModel(), Follow::pivotTable(), 'follow_id', 'user_id');
 }