I'm new to laravel 4 and I'm currently having the following problem: In my routes.php I have the line:
Route::get('maps/{map_type}', 'MapsController@loadMaps');
And in my MapsController I'd like to get the {map_type} to use it.
So my question: How can I retrieve map_type in my Controller?