Skip to content

Instantly share code, notes, and snippets.

@burakerdem
Last active August 29, 2015 14:02
Show Gist options
  • Save burakerdem/41c49b5ee9cc0d7e828e to your computer and use it in GitHub Desktop.
Save burakerdem/41c49b5ee9cc0d7e828e to your computer and use it in GitHub Desktop.
Country Selector for Laravel 4.
// Taken from http://chrishayes.ca/blog/code/laravel-4-dry-views-form-html-macros
Form::macro('countrySelect', function($name, $selected = 0, $options = [])
{
$countries = [0 => 'Select Country'] + Country::remember(60)->get()->lists('name', 'id');
return Form::select($name, $countries, $selected, $options);
});
{{ Form::countrySelect('country') }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment