Skip to content
Discussion options

You must be logged in to vote

Two things to always try, when things aren't shown in the browser is

  1. Re-publish the relevant bundled assets (JavaScript and CSS)
    php artisan vendor:publish --tag=nova-assets --force
  2. Then also clear caches (mostly just views that are related)
    php artisan view:clear, or php artisan optimize:clear for everything

This is usually something you'd want to do every time you update packages that has bundled assets.

Nova also has a section in their documentation to keep your assets up-to-date.
I believe it should have the same outcome as point (1) above, but will also publish language files.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by daanadriaan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #4578 on July 14, 2022 12:44.