I'm new to laravel and I'm trying to access the raw PDO instance referring to this doc http://laravel.com/docs/5.0/database#accessing-connections by using this code DB::connection()->getPdo();
to my controller. But I'm getting this error:
FatalErrorException in GeneralCategoryController.php line 24:
Class 'App\Http\Controllers\DB' not found
I've already tried to include this namespace Illuminate\Support\Facades\DB
but still no result.
Please note that I'm connected already to mysql database.
Am I missing something?