23-01-2026
This commit is contained in:
parent
07959c0ba2
commit
854ce02bf6
166 changed files with 32909 additions and 1262 deletions
|
|
@ -1,8 +1,12 @@
|
|||
@php
|
||||
// Brand aus Variable oder Auth-User's Partner, Fallback: aktuelles Theme
|
||||
$brand = $brand ?? (auth()->check() && auth()->user()->partner ? auth()->user()->partner->brand : null) ?? config('app.theme', 'b2in');
|
||||
@endphp
|
||||
<div class="mb-6 mx-auto flex justify-center">
|
||||
<img src="{{ asset(\App\Helpers\ThemeHelper::getLogoPath('positive')) }}"
|
||||
alt="B2IN Logo"
|
||||
<img src="{{ asset(\App\Helpers\ThemeHelper::getLogoPathForBrand($brand, 'positive')) }}"
|
||||
alt="Logo"
|
||||
class="h-14 w-auto dark:hidden" />
|
||||
<img src="{{ asset(\App\Helpers\ThemeHelper::getLogoPath('negative')) }}"
|
||||
alt="B2IN Logo"
|
||||
<img src="{{ asset(\App\Helpers\ThemeHelper::getLogoPathForBrand($brand, 'negative')) }}"
|
||||
alt="Logo"
|
||||
class="h-14 w-auto hidden dark:block" />
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue