getCountriesOptions() public static method

public static getCountriesOptions ( $name = 'name', $id = 'id' )
 /**
  * Get the list of the Contries Options from Country Model.
  *
  * @return \Illuminate\Support\Collection
  */
 public function getCountriesOptions()
 {
     $options = Collection::make([0 => 'Please Select'] + Country::getCountriesOptions()->toArray());
     return $options;
 }