I have created a very simple form in laravel..
<?php echo Form::selectRange('number', 2, 12); echo Form::submit('Click Me!'); ?> However, at this time I am unclear of how to send the selected value of the DDL to the server to perform a task depending on which value is selected. For example, if 3 is selected it would send you to a specific view that would be different than if 4, 5, or 6 was selected. I checked out the documentation and couldn't find the direction I should go.