Spróbuj po prostu pobrać podstawową instancję PDO. Jeśli to nie powiedzie się, Laravel nie mógł połączyć się z bazą danych!
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 );
}