未找到Laravel DB类

时间:2015-11-22 02:09:42

标签: php laravel laravel-5

我正在尝试配置我的Laravel新项目,我正在使用xampp localhost。当我尝试运行我的第一个数据库插入时,出现此错误"致命错误:类' DB'在第48和34行的C:\ xampp \ htdocs \ boh \ index.php中找不到;

这是我的database.php

    'mysql' => [
    'driver'    => 'mysql',
    'host'      => 'localhost',
    'database'  => 'boh',
    'username'  => 'root',
    'password'  => '',
    'charset'   => 'utf8',
    'collation' => 'utf8_unicode_ci',
    'prefix'    => '',
    'strict'    => false,
],

这里是简短的脚本:

 <?php
    DB::select('INSERT INTO `boh` VALUES name="John"');
    ?>

1 个答案:

答案 0 :(得分:2)

以下是如何设置基本控制器,路由和SQL查询的示例。

应用程序/ HTTP /控制器/ TestController.php

<?php namespace App\Http\Controllers;

use DB;

class TestController extends Controller {

    public function getInsert()
    {
        DB::table('boh')->insert(
            ['name' => 'john']
        );
    }
}

应用程序/ HTTP / routes.php文件

<?php

Route::get('insert-test', 'TestController@getInsert');

导航至yourdomain.com/insert-test