Hãy thử chỉ lấy phiên bản PDO cơ bản. Nếu điều đó không thành công, khi đó Laravel không thể kết nối với cơ sở dữ liệu!
use Illuminate\Support\Facades\DB;
// Test database connection
try {
DB::connection()->getPdo();
} catch (\Exception $e) {
die("Could not connect to the database. Please check your configuration. error:" . $e );
}