The fix in the duplicate question doesn't work.
I tried all the Fixes in stackoverflow but nothing seems to be working laravel trailing Slashes redirect to localhost
Route
Route::get('/admin', array('as' => 'admin', 'uses' => 'Admin\Admin@getLogin'));
This URL is working fine http://localhost/app/admin
but when I add a trailing slash in front of it http://localhost/app/admin/ it gets redirected to http://localhost/admin
Help!