PHP code example of pragmarx / countries-laravel

1. Go to this page and download the library: Download pragmarx/countries-laravel 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/ */

    

pragmarx / countries-laravel example snippets


/**
 * Store a new blog post.
 *
 * @param  Request  $request
 * @return Response
 */
public function store(Request $request)
{
    $this->validate($request, [
        'title' => '

'validation' => [
    'rules' => [
	    'countryCommon' => 'name.common'
	]
]

'rules' 	=> [
    'country' 			=> 'name.common',
    'cca2',
    'cca3',
    'ccn3',
    'cioc',
    'currencies'			=> 'ISO4217',
    'language',
    'language_short'	=> 'ISO639_3',
]

$france = Countries::where('name.common', 'France');

'routes' => [
    'enabled' => false,
]

php artisan vendor:publish --provider=PragmaRX\\CountriesLaravel\\Package\\ServiceProvider