mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 06:04:08 -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 --}}
|
{{-- Header --}}
|
||||||
@slot('header')
|
@slot('header')
|
||||||
@component('mail::header', ['url' => config('app.url')])
|
@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->brand == '3')
|
||||||
|
|
||||||
@if ($snipeSettings->email_logo!='')
|
@if ($snipeSettings->email_logo!='')
|
||||||
|
@ -11,10 +21,11 @@
|
||||||
@elseif ($snipeSettings->logo!='')
|
@elseif ($snipeSettings->logo!='')
|
||||||
<img style="max-height: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->logo)) }}">
|
<img style="max-height: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->logo)) }}">
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<br><br>
|
<br><br>
|
||||||
{{ $snipeSettings->site_name }}
|
{{ $snipeSettings->site_name }}
|
||||||
<br><br>
|
<br><br>
|
||||||
|
{{-- else if branding type is just logo --}}
|
||||||
@elseif ($snipeSettings->brand == '2')
|
@elseif ($snipeSettings->brand == '2')
|
||||||
@if ($snipeSettings->email_logo!='')
|
@if ($snipeSettings->email_logo!='')
|
||||||
|
|
||||||
|
@ -22,14 +33,16 @@
|
||||||
@elseif ($snipeSettings->logo!='')
|
@elseif ($snipeSettings->logo!='')
|
||||||
<img style="max-width: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->logo)) }}">
|
<img style="max-width: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->logo)) }}">
|
||||||
@endif
|
@endif
|
||||||
|
@endif
|
||||||
@else
|
@else
|
||||||
{{ $snipeSettings->site_name }}
|
{{ $snipeSettings->site_name }}
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
{{-- Either the $snipeSettings variable isn't set or setup is not complete --}}
|
||||||
@else
|
@else
|
||||||
{{ $snipeSettings->site_name }}
|
{{ config('app.name') }}
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@endcomponent
|
@endcomponent
|
||||||
@endslot
|
@endslot
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue