App\Helpers\Macros\Traits\Dropdowns::selectCanadaTerritories PHP Method

selectCanadaTerritories() public method

public selectCanadaTerritories ( $name, null $selected = null, array $options = [] ) : mixed
$name
$selected null
$options array
return mixed
    public function selectCanadaTerritories($name, $selected = null, $options = array())
    {
        $list = ['' => 'Select One...', 'AB' => 'Alberta', 'BC' => 'British Columbia', 'MB' => 'Manitoba', 'NB' => 'New Brunswick', 'NL' => 'Newfoundland and Labrador', 'NS' => 'Nova Scotia', 'ON' => 'Ontario', 'PE' => 'Prince Edward Island', 'QC' => 'Quebec', 'SK' => 'Saskatchewan', 'NT' => 'Northwest Territories', 'NU' => 'Nunavut', 'YT' => 'Yukon'];
        return $this->select($name, $list, $selected, $options);
    }