Skip to content

Instantly share code, notes, and snippets.

@driesvints
Last active October 23, 2018 07:52
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save driesvints/6543470 to your computer and use it in GitHub Desktop.
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');
@JosephSilber
Copy link

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