LaravelDaily / laravel-invoices

Laravel package to generate PDF invoices from various customizable parameters
GNU General Public License v3.0
1.39k stars 303 forks source link

Can't add image to my invoice #230

Closed hesammoosapour closed 6 months ago

hesammoosapour commented 6 months ago

When I try add an image as a logo, I get this error:

Maximum execution time of 60 seconds exceeded

I just add this line: <img src="http://localhost:8000/BelfiLogo.webp" alt="logo" height="100" width="100"> to my default.blade.php

Please help me solve it. Thanks🙏

hesammoosapour commented 6 months ago

I was able to solve it this way: <img src="{{ public_path('belfi.png') }}" alt="logo" height="100" width="100">