26 lines
707 B
PHP
26 lines
707 B
PHP
@component('mail::message')
|
|
@lang('email.generic_intro', ['user_name' => $user->name])
|
|
|
|
|
|
@lang('email.moderate_photo_comment_p1', ['album_name' => $album->name])
|
|
|
|
|
|
@lang('email.moderate_photo_comment_p2')
|
|
|
|
|
|
@lang('email.moderate_photo_comment_name_label') {{ $comment->name }}
|
|
|
|
@lang('email.moderate_photo_comment_email_label') {{ $comment->email }}
|
|
|
|
@lang('email.moderate_photo_comment_comment_label')
|
|
|
|
{!! $comment->comment !!}
|
|
|
|
@component('mail::button', ['url' => $photo->url(), 'color' => 'blue'])
|
|
@lang('forms.review_photo_comment_action')
|
|
@endcomponent
|
|
|
|
@lang('email.generic_regards')<br/>
|
|
{{ UserConfig::get('app_name') }}<br/>
|
|
<a href="{{ route('home') }}">{{ route('home') }}</a>
|
|
@endcomponent |