This might cause problems elsewhere but you can strToLower in your index.php file
I have added the GLOBALS line. Now it does not matter about the case, but by the same token, its not possible to use case to differentiate routes or pass mixed case parameters;
@Mithridates I implemented this when a user wanted a short link to redirect users to their event page. The URL was printed on posters with a capital letter at the beginning and people were typing it in lowercase, this solved the issue.
Route::get('/foo/{bar}', function ($bar) {
switch (strtolower($bar)) {
case 'baz':
return Redirect::to('/foo/baz')
default:
break;
}
});