Skip to content

appleboy/laracountries

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Laracountries

Migration and seed files with all countries for Laravel PHP Framework.

The country codes are in the format ISO 3166-1 alpha-2.

A Simple Example of Use

Controller

	/**
	* Show the form for creating a new resource.
	*
	* @return View
	*/
	public function create()
	{
		$countries = Country::all();

		return View::make('myview', compact('countries'));
	}

View

    <select class="form-control" name="country">
        <option value="">Select a country</option>
        @foreach($countries as $country)
            <option value="{{ $country->id }}">{{ $country->name }}</option>
        @endforeach
    </select>

License

Copyright (c) 2015 Fábio Santos. See the LICENSE file for license rights and limitations (MIT).

About

Migration and seed files with all countries for Laravel PHP Framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%