Laravel 알림 템플릿을 사용자 지정합니다.
2852 단어 mailslaravelnotifications
php artisan vendor:publish --tag=laravel-notifications
이제 "resources/view/vendor"에서 마크다운 템플릿 레이아웃을 편집할 수 있습니다.
그러나 템플릿의 색상 및 기타 CSS를 사용자 정의해야 하는 경우 Laravel은 이 자산을 게시하는 명령을 제공합니다.
php artisan vendor:publish --tag=laravel-mail
이제 "resources/views/vendor/mail/html/themes/default.css"에 있습니다.
여기에서 CSS를 사용자 정의하여 알림을 브랜드화할 수 있습니다.
작은 팁:
.header a {
color: #3d4852;
font-size: 19px;
font-weight: bold;
text-decoration: none;
}
.button-primary {
background-color: #2d3748;
border-bottom: 8px solid #2d3748;
border-left: 18px solid #2d3748;
border-right: 18px solid #2d3748;
border-top: 8px solid #2d3748;
}
물론 바로 아래에서 오류 작업과 성공 작업을 사용자 지정할 수 있습니다.
읽어 주셔서 감사합니다!
Reference
이 문제에 관하여(Laravel 알림 템플릿을 사용자 지정합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/arielmejiadev/customize-the-laravel-notifications-template-44ca텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)