PHP code example of pranpegu / laravel-countries

1. Go to this page and download the library: Download pranpegu/laravel-countries library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

pranpegu / laravel-countries example snippets


Pranpegu\LaravelCountries\CountriesServiceProvider::class,

use Pranpegu\LaravelCountries\Countries;

$countries  = Countries::all(); //returns the array of countries name, dial_code and prefix 

foreach($countries as $country){
    echo $country['name'].",".$country['dial_code'].",".$country['code'].",";
         //eg : Idia,91,IN
}

//or in blade file

<select class="form-group" name="country" >
@foreach($countries as $country)
    <option value="{{$country['name']}}" >{{$country['name']}}</option>
@endforeach
</select>

//can also use for getting phone(dial code) code 

<select class="form-group" name="dial_code" >
@foreach($countries as $country)
    <option value="{{$country['dial_code']}}" >{{$country['dial_code']}}</option>
@endforeach
</select>

//similarly as Country prefix 

<select class="form-group" name="code" >
@foreach($countries as $country)
    <option value="{{$country['code']}}" >{{$country['code']}}</option>
@endforeach
</select>