10 lines
327 B
PHP
10 lines
327 B
PHP
@php
|
|
$logoPath = $logoPath ?? config('mail.logo_path');
|
|
@endphp
|
|
|
|
@if (! empty($logoPath) && file_exists($logoPath) && isset($message))
|
|
<div style="text-align: center; margin-bottom: 24px;">
|
|
<img src="{{ $message->embed($logoPath) }}" alt="{{ config('app.name') }}" style="max-height: 80px; width: auto;">
|
|
</div>
|
|
@endif
|