Files
site/resources/views/emails/admin/feedback.blade.php

23 lines
512 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@component('mail::message')
# Сообщение с формы
Тема: {{$data->title}}
Сообщение: {{$data->body}}
@if($data->userInfo->guest)
Email: {{$data->userInfo->userEmail}}
@else
ФИО: {{$data->userInfo->userFullName}}
Телефон: {{$data->userInfo->userPhone}}
Email: {{$data->userInfo->userEmail}}
Ссылка на профиль: {{$data->userInfo->profileUrl}}
@endif
Спасибо,
{{ config('app.name') }}
@endcomponent