<?php

class $NAME$ extends \Eloquent {

	protected $fillable = array();

	protected $table = 'follower';

	public function follower()
	{
		return $this->belongsToMany('User');
	}
}