Hola, muy buenas!
Estoy intentando desplegar mi proyecto con Laravel + Metronic a un servidor de producción pero cuando cargo cualquier pantalla me salta el siguiente error:
"InvalidArgumentException
View [layout._system] not found."
En mi proyecto local funciona sin problema, ¿qué puede estar pasando?
Gracias de antemano.
Hello,
The error message you are encountering, "InvalidArgumentException View [layout._system] not found," indicates that the "_system.blade.php" file is missing from the specified folder.
Please ensure that the "_system.blade.php" file exists in the following directory within your Laravel project:
/resources/views/layout/_system.blade.php
If the file is missing, you can copy it from your local environment to the production server to resolve this issue.
If the file exists but you're still facing the error, make sure that the file permissions and directory structure are consistent between your local and production environments.
Feel free to reach out if you need further assistance.