Это лучший и правильный путь из
https://laracasts.com/series/whats-new-in-laravel-5-4/episodes/7
(я извлеку) - Выполнить
php artisan vendor:publish --tag=laravel-mail, this will create vendors/html folder in your views directory.
Тогдасоздайте новый файл темы в
/resources/views/vendor/mail/html/themes/my_theme.css
Затем в
config/mail.php
Установите новую тему
'theme' => 'my_theme',
'paths' => [
resource_path('views/vendor/mail'),
],
],
Теперь вы можете установить свой собственный CSS и создавать любые новые цвета кнопок.
@component('mail::button', ['url' => $url, 'color' => 'success'])
View Group
@endcomponent