Support the ongoing development of Laravel.io →
posted 9 years ago
Views
Last updated 1 year ago.
0

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

Last updated 1 year ago.
0

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.

Last updated 1 year ago.
0

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.)

Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Dorky106 dorky106 Joined 3 Aug 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.