-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
file_put_contents failed to open stream: No such file or directory #52
Comments
Encountered the same issue numerous times with different combinations of the compiler (and laravel). |
Or another option would be to make sure the directory exists and if it doesn't create it. |
I ran into the same issue. I just have this set above: if (! Storage::exists('db-blade-compiler/views')) {
Storage::makeDirectory('db-blade-compiler/views');
} However, I shouldn't have to do this. It's weird that it doesn't even check within the package itself. |
It works for me with these lines in the
|
Hi, after installation, and running:
I get the following error
I can fix this by manually creating the folder /app/db-blade-compiler/views.
I have cache set to false in config
Using Laravel 8,0, latest version of this package
The text was updated successfully, but these errors were encountered: