phpvms/app/Support/Countries.php
2019-04-07 22:27:10 -05:00

27 lines
483 B
PHP

<?php
namespace App\Support;
use League\ISO3166\ISO3166;
/**
* Class Countries
*/
class Countries
{
/**
* Get a select box list of all the countries
*
* @return static
*/
public static function getSelectList()
{
$countries = collect((new ISO3166())->all())
->mapWithKeys(static function ($item, $key) {
return [strtolower($item['alpha2']) => $item['name']];
});
return $countries;
}
}