0

I've just installed a fresh Spark app, went through the configuration instructions and set things up. My home view loads and so does the login view, however when I hit the registration route the view doesn't load. The header does, but there's no content. I tried:

  • php artisan cache:clear
  • php artisan view:clear
  • composer dumpautoload
  • npm run dev

EDIT:

I wanted to add some more information:

I have other Spark projects in development that are running on the same VM and they all load fine. I'm not sure if this helps, but here is the require portion of my composer.json:

"require": {
    "php": "^7.3|^8.0",
    "fideloper/proxy": "^4.4",
    "fruitcake/laravel-cors": "^2.0",
    "guzzlehttp/guzzle": "^7.0.1",
    "laravel/framework": "^8.12",
    "laravel/tinker": "^2.5",
    "laravel/spark-aurelius": "*@dev",
    "laravel/ui": "^2.0"
}, 
Andrew Fox
  • 794
  • 4
  • 13
  • 30

1 Answers1

0

Ok, so the problem was that I had my "live" Stripe keys in my .env file and not the "test" keys. Hope this helps someone out.

Andrew Fox
  • 794
  • 4
  • 13
  • 30