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');
    }
}
Was it helpful?

Solution

Probably your controller name:

 Route::get('contact', 'PagesController@contact');
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top