No Respond when view logo.blade.php is loaded
-
I having issues when I'm trying to create an Invoice, when I trackback I found that the root is caused by logo.blade.php.
<img src="{{ \Illuminate\Support\Facades\Storage::url(core()->getConfigData('general.design.admin_logo.logo_image')) }}" alt="{{ config('app.name') }}" style="height: 40px; width: 110px;"/>
So when I remove the "src" it works well.
<img src="" alt="{{ config('app.name') }}" style="height: 40px; width: 110px;"/>
But in this case, my logo won't show in the email template. Is there any solution for this?
-
Hello ,
Are you talking about invoice email template ?
Also please make sure you have added the logo from the backend.
Thanks! -
@SP said in No Respond when view logo.blade.php is loaded:
ve the "src" it works well.
Thanks for your reply. I'm talking about any email template which using the logo will have an issue. This issue will occur after the app is crashed and I will kill the port and restart the server. But after I restart, this issue happened. Currently, I will need to remove the "img" element to prevent this issue. Is there any other solution for this?