Skip to content

Instantly share code, notes, and snippets.

@driesvints
Last active October 23, 2018 07:52
Show Gist options
  • Select an option

  • Save driesvints/6543470 to your computer and use it in GitHub Desktop.

Select an option

Save driesvints/6543470 to your computer and use it in GitHub Desktop.
Laravel Weekly #23 - Quick Tip
<?php
# Create a list with numbers ranging from 10 to 20.
Form::selectRange('number', 10, 20);
# Create a list with years ranging from 1900 to 2000.
Form::selectYear('year', 1900, 2000);
# Creates a list with month names.
Form::selectMonth('month');
@msurguy
Copy link
Copy Markdown

msurguy commented Sep 13, 2013

Cool snippet =)

@louposk
Copy link
Copy Markdown

louposk commented Sep 16, 2013

Great!

Copy link
Copy Markdown

ghost commented Sep 16, 2013

thank you!

@Jaspur
Copy link
Copy Markdown

Jaspur commented Sep 21, 2013

What about translations for the months? There is the setlocale() for in PHP, but where to set it correctly?

@driesvints
Copy link
Copy Markdown
Author

The month names are generated with the strftime function and should respect the app's locale settings.

You can set the locale in Laravel through the App::setLocale($lang) function. Check the localization docs for more info.

@JosephSilber
Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment