Jozzy91
Jozzy91

Reputation: 97

Laravel: Using DB facade returns method 'table' not found

I can't make this function work:

In Controller :

use Illuminate\Support\Facades\DB;
DB::table('users')->where('email', $email)->first(),

It returns:

Method 'table' not found in class \Illuminate\Support\Facades\DB

Also tried this function with

App/User::whereEmail($email)->first();

But it doesn't recognize the methods for some reason.

Upvotes: 1

Views: 1199

Answers (1)

Alexey Mezenin
Alexey Mezenin

Reputation: 163898

Change it to:

use DB;

Or just use full namespace:

\DB::table()

Upvotes: 1

Related Questions