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');
}
}