phplaravellaravel-spark

Laravel Spark registration view not loading after fresh installation


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:

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"
}, 

Solution

  • 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.