First of all, "this does not work" is not helpful. You should always provide exact errors, screenshots, etc., whatever's necessary to convey the actual response you're getting and why it's wrong.
Second, you're not defining your controller method properly. Read up: http://laravel.com/docs/controllers#restful-controllers
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
In your controller:
class UntoldController extends BaseController {
public function getUntold() // <-- Fix the name here
{
return View::make('untold');
}
}
Your methods in your class need to be named restfully (get, post, etc.)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community