31 lines
714 B
PHP
31 lines
714 B
PHP
@extends('layout.emails')
|
|
|
|
@section('preheader')
|
|
{!! trans('cachet.subscriber.email.incident.html-preheader', ['app_name' => $app_name]) !!}
|
|
@stop
|
|
|
|
@section('content')
|
|
{!! trans('cachet.subscriber.email.incident.html-preheader', ['app_name' => $app_name]) !!}
|
|
|
|
<p>
|
|
{!! $status !!}
|
|
@if($has_component)
|
|
({{ $component_name }})
|
|
@endif
|
|
</p>
|
|
|
|
<p>
|
|
{!! $html_content !!}
|
|
</p>
|
|
|
|
@if($show_support)
|
|
<p>{!! trans('cachet.powered_by', ['app' => $app_name]) !!}</p>
|
|
@endif
|
|
<p>
|
|
<small><a href="{{ $manage_link }}">{!! trans('cachet.subscriber.email.manage') !!}</a></small>
|
|
</p>
|
|
<p>
|
|
<small><a href="{{ $unsubscribe_link }}">{!! trans('cachet.subscriber.email.unsubscribe') !!}</a></small>
|
|
</p>
|
|
@stop
|