I just bought a single page template ( smartadmin ) which loads contents using ajax and change url using a pattern "/#ajax/file.html".
I was surprised that I can navigate through it without setting routes, and even if I set a route it doesn't work. Example :
Route::get('/#ajax/inbox.php', function() { return View::make('test'); });
How should I do the routing?