5

After installing Laravel Nova to my Spark application and going to /nova, the nova interface showed, but I can't click anything.

Opening the dev console, I see the following errors:

Nova errors in dev console

T. Gawęda
  • 15,706
  • 4
  • 46
  • 61
kevnk
  • 18,733
  • 3
  • 28
  • 30

1 Answers1

4

In app/resources/lang/en.json you'll find 4 instances of \". Changing all those to single quotes fixes the issue.

Nova without issues

kevnk
  • 18,733
  • 3
  • 28
  • 30
  • if I update `/resources/lang/vendor/nova/en.json` for other things like changing "Lens" to "View", the app doesn't pickup the change. Are you seeing your changes to en.json get picked up by Nova? – anderly Aug 22 '18 at 19:14
  • Nevermind. If I create an `en.json` at `/resources/lang/en.json` and override only what I need, it works. – anderly Aug 22 '18 at 19:18
  • Hey thanks for this integration! I'm discovering Nova and was looking to integrate it with my Spark app, which looks like interesting to have. If you got any more updates on how you went further, replacing current Spark admin for example or other integration topics, it could be good! Thanks. – NoX Aug 27 '18 at 07:54