I would like to define {id} an optional parameter in the following route:
Route::get('profile/edit/{id}', array('uses' => 'BusinessController@editProfile', 'as' => 'profile.edit'));
How can I do this and also define a default parameter if one isn't provided?