I'm using a resource controller to handle accounts in my website. This is my route :
Route::group(['before' => 'auth'], function() {
Route::resource('/account', 'AccountController');
});
And this is my controller :
class AccountController extends \BaseController {
public function index() {
return Redirect::action('AccountController@show', Sentry::getUser()->id);
}
public function show($id) {
return $id;
}
public function edit($id) {
}
public function update($id) {
}
public function destroy($id) {
}
}
I created the controller with the command line using : 'php artisan controller:make AccountController --except=store,create'
Although, for some reason, I get a NotFoundHttpException when navigating to the URL.

But I have no idea why. What could be causing this?
EDIT:
Filters :
Route::filter('auth', function()
{
if ( ! Sentry::check() ) return Redirect::action('HomeController@getLogin');
});
Route::resource('account', 'AccountController');? - Darrrrrren