Whoops, looks like something went wrong.
Page auth/register: 1/1 ReflectionException in Route.php line 152: Function () does not exist
File routes.php // Registration routes... Route::get('auth/register', ["as" => "register", "uses", 'Auth\AuthController@getRegister']); Route::post('auth/register', 'Auth\AuthController@postRegister');
Something went wrong but what? (here I m a niewbie ::)
http://manudahmen.be/blocnotes2/public/index.php/auth/register
You have a typo in your declaration of the get() Route, the comma after "uses" should be a => :)
Right now it looks for an empty string as a function because there is a "uses" in the array but no corresponding value.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community