21 lines
693 B
PHP
21 lines
693 B
PHP
@props(['url'])
|
|
@php
|
|
$settings = \Illuminate\Support\Facades\Cache::get('system_settings', []);
|
|
$appName = $settings['app_name'] ?? config('app.name');
|
|
$appLogo = $settings['app_logo'] ?? null;
|
|
$appLogoText = $settings['app_logo_text'] ?? substr($appName, 0, 1);
|
|
@endphp
|
|
<tr>
|
|
<td class="header">
|
|
<a href="{{ $url }}" style="display: inline-block; text-align: center;">
|
|
@if ($appLogo)
|
|
<img src="{{ $appLogo }}" class="logo" alt="{{ $appName }} Logo">
|
|
<br>
|
|
@endif
|
|
<span style="font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 18px; color: #3D4E4B; letter-spacing: 0.15em; text-transform: uppercase;">
|
|
{{ $appName }}
|
|
</span>
|
|
</a>
|
|
</td>
|
|
</tr>
|