// Accessing to the intermidiate table/pivot
Roleモデル
class Role extends Model
{
//
public function users(){
return $this->belongsToMany('App\User');
}
}
Route::get('user/pivot', function(){
$user = User::find(1);
foreach($user->roles as $role){
echo $role->pivot->created_at;
}
});