b2in/resources/views/vendor/mail/html/header.blade.php
2026-01-23 17:33:10 +01:00

26 lines
1.1 KiB
PHP

@props(['url'])
@php
// Logo-URL für E-Mails (muss absolute URL sein, PNG für volle Kompatibilität)
$logoUrl = config('app.url') . '/img/logos/b2in-logo-negative.png';
@endphp
<tr>
<td class="header" style="background-color: #2b3f51; padding: 30px 20px; text-align: center;" bgcolor="#2b3f51" align="center">
<!--[if mso]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="center" style="padding: 0;">
<![endif]-->
<a href="{{ $url }}" style="display: inline-block; text-decoration: none;" target="_blank" rel="noopener">
@if (trim($slot) === 'Laravel')
<img src="https://laravel.com/img/notification-logo-v2.1.png" class="logo" alt="Laravel Logo" width="50" height="50" style="display: block; height: 50px; max-height: 50px; width: auto; border: 0; outline: none;" />
@else
<img src="{{ $logoUrl }}" alt="{{ config('app.name') }}" width="140" height="40" style="display: block; height: 40px; max-height: 40px; width: auto; border: 0; outline: none; -ms-interpolation-mode: bicubic;" />
@endif
</a>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>