I did look at the other Laravel Route questions, but nothing seems to work for me.
I am trying Laravel 4. I ran the command: php artisan controller:make PhotoController
to create my controller. Then I added a route in my routes.php file as such:
Route::resource('photo', 'PhotoController');
When I go to localhost/photo, I see 404 Not Found.
Any ideas? I can see the root and /index.php, they both say "Hello World", so I know something is working.
PhotoController
have an index function? - Mike Rockétt