/**
  * Create a new pivot model instance.
  *
  * @param \Illuminate\Database\Eloquent\Model $parent
  * @param array $attributes
  * @param string $table
  * @param bool $exists
  * @return \Illuminate\Database\Eloquent\Relations\Pivot 
  * @static 
  */
 public static function newPivot($parent, $attributes, $table, $exists)
 {
     //Method inherited from \Illuminate\Database\Eloquent\Model
     return \Webpatser\Countries\Countries::newPivot($parent, $attributes, $table, $exists);
 }