dongliping003116 2017-02-17 08:33 采纳率: 0%
浏览 19
已采纳

Eloquent DB类为null

When I try to use he DB class of eloquent i get this error :

Call to a member function raw() on null

Code :

use Illuminate\Support\Facades\DB;
...
DB::raw("count(id_annonce)")
...

I already tried updating composer and frameworks

  • 写回答

1条回答 默认 最新

  • doujiling4377 2017-02-17 08:46
    关注

    Read this: https://jenssegers.com/index.php/53/using-eloquent-without-laravel

    You have to use Capsule to init the DB connection and boot eloquent. Anyway you can use an alias to call it DB if you prefere.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?