You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have just recently upgraded my Laravel to the latest version, Now I'm having an issue with external CSS and image rendering on my Dompdf. The data works fine but the css and and image are both not working. In my previous version, it worked fine. Now, my project is working on a docker environment and just new to it. The code below is a sample. Thank you
It´s very easy to fix, just use de absolute path when you a about to uso laravel-dompdf. {{ public_path('img|css') }} //insted of {{ asset('img|css') }}
It´s very easy to fix, just use de absolute path when you a about to uso laravel-dompdf. {{ public_path('img|css') }} //insted of {{ asset('img|css') }}
But why use public_path? That is not a clean solution!
Hello, I have just recently upgraded my Laravel to the latest version, Now I'm having an issue with external CSS and image rendering on my Dompdf. The data works fine but the css and and image are both not working. In my previous version, it worked fine. Now, my project is working on a docker environment and just new to it. The code below is a sample. Thank you
<link rel="stylesheet" type="text/css" href="{{ asset('file.css') }}" media="all">
The text was updated successfully, but these errors were encountered: