I have a very simple Controller for my static views.
Route::get('thisisatest', function()
{
return View::make('pages.thisisatest');
});
I can access this view on domain.de/public/thisisatest
But i want to separate the url with a delimiter like domain.de/this-is-a-test.
How can i do this and how to remove the /public in my URL ?