mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 13:44:06 -08:00
Added a little more context to mail template
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
5e59fa2598
commit
bcb9804be8
|
@ -2,8 +2,18 @@
|
|||
{{-- Header --}}
|
||||
@slot('header')
|
||||
@component('mail::header', ['url' => config('app.url')])
|
||||
@if (isset($snipeSettings) && ($snipeSettings->show_images_in_email=='1' ) && ($snipeSettings::setupCompleted()))
|
||||
|
||||
{{-- Check that the $snipeSettings variable is set, images are set to be shown, and setup is complete --}}
|
||||
|
||||
|
||||
@if (isset($snipeSettings) && ($snipeSettings::setupCompleted()))
|
||||
|
||||
{{-- Show images in email! --}}
|
||||
@if (($snipeSettings->show_images_in_email=='1' ) && (($snipeSettings->brand == '3') || ($snipeSettings->brand == '2')))
|
||||
|
||||
{{-- $snipeSettings->brand = 1 = Text --}}
|
||||
{{-- $snipeSettings->brand = 2 = Logo --}}
|
||||
{{-- $snipeSettings->brand = 3 = Logo + Text --}}
|
||||
@if ($snipeSettings->brand == '3')
|
||||
|
||||
@if ($snipeSettings->email_logo!='')
|
||||
|
@ -11,10 +21,11 @@
|
|||
@elseif ($snipeSettings->logo!='')
|
||||
<img style="max-height: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->logo)) }}">
|
||||
@endif
|
||||
|
||||
<br><br>
|
||||
{{ $snipeSettings->site_name }}
|
||||
<br><br>
|
||||
|
||||
{{-- else if branding type is just logo --}}
|
||||
@elseif ($snipeSettings->brand == '2')
|
||||
@if ($snipeSettings->email_logo!='')
|
||||
|
||||
|
@ -22,14 +33,16 @@
|
|||
@elseif ($snipeSettings->logo!='')
|
||||
<img style="max-width: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->logo)) }}">
|
||||
@endif
|
||||
|
||||
@endif
|
||||
@else
|
||||
{{ $snipeSettings->site_name }}
|
||||
@endif
|
||||
|
||||
{{-- Either the $snipeSettings variable isn't set or setup is not complete --}}
|
||||
@else
|
||||
{{ $snipeSettings->site_name }}
|
||||
{{ config('app.name') }}
|
||||
@endif
|
||||
|
||||
@endcomponent
|
||||
@endslot
|
||||
|
||||
|
|
Loading…
Reference in a new issue