skip to Main Content

Laravel 10 does not display the Manage Account menu when logging in to production, when I am developing it works perfectly.

Developing
In production

Hice npm run dev, para subir a mi servidor cpanel

This is the url of the page in production
https://hogardeancianossanagustin.com/

I already tried clearing the cache, and redoing the project, but it’s the same error, although I can’t call it an error since it doesn’t show me any errors.

2

Answers


  1. Chosen as BEST ANSWER

    I think it's a problem with jetstream, because I created the same project with breeze and it worked perfectly, thank you very much for your answers.

    In case anyone has the same problem, I suggest using breeze.


  2. To clear the compiled view files, run the following command from the terminal, they are not cleared together with the other caches

    php artisan view:clear
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search