方法App \ Http \ Controllers \ homeController :: home()在laravel中不存在错误

时间:2016-08-18 09:06:08

标签: php laravel-5.2

我正在使用laravel5。 这是 routes.php 文件内容:

<?php

Route::get('/','homeController@home');

我在 App \ Http \ Controllers 路径中有 homeController.php 文件,该路径包含:

    <?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Http\Requests;

class homeController extends Controller
{
    public function home(){
        return view('home');
    }
}

现在运行项目时会抛出此错误方法App \ Http \ Controllers \ homeController :: home()不存在。 我该如何解决?

1 个答案:

答案 0 :(得分:1)

控制器首字母必须是大写字母

将控制器名称和控制器文件名从matplotlib.style.use('ggplot') fig, ax = plt.subplots() df[['a', 'c']].plot.bar(stacked=True, width=0.1, position=1.5, colormap="bwr", ax=ax, alpha=0.7) df[['b', 'd']].plot.bar(stacked=True, width=0.1, position=-0.5, colormap="RdGy", ax=ax, alpha=0.7) df[['a', 'd']].plot.bar(stacked=True, width=0.1, position=0.5, colormap="BrBG", ax=ax, alpha=0.7) plt.legend(loc="upper center") plt.show() 更改为homeController.php,将班级名称从HomeController.php更改为homeController