Question

When attempting to load the page, I'm getting the error that the ReflectionException …\vendor\laravel\framework\src\Illuminate\Container\Container.php485, could use some insight on what is causing this error.

routes.php

Route::get('contact', 'Pages@contact');

laravel\app\controllers\PagesController.php

<?php
class PagesController extends BaseController {
public function contact()
    {
        return View::make('hello');
    }
}
Était-ce utile?

La solution

Probably your controller name:

 Route::get('contact', 'PagesController@contact');
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top