barryvdh / laravel-dompdf

A DOMPDF Wrapper for Laravel
MIT License
6.57k stars 965 forks source link

CSS and Image not rendering on my PDF #1035

Open dheyxter opened 4 months ago

dheyxter commented 4 months ago

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">

arseniomuanda commented 4 months ago

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') }}

titosobabas commented 1 month ago

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!