27 lines
443 B
PHP
27 lines
443 B
PHP
<x-mail::message>
|
|
# {{ $article->title }}
|
|
|
|
## {{ $article->subtitle }}
|
|
|
|
Author: {{ $article?->author?->display_name }}
|
|
|
|
<x-mail::button :url="route('article', ['article_slug' => $article->slug])">
|
|
Read in Browser
|
|
</x-mail::button>
|
|
|
|
<hr />
|
|
|
|
|
|
{!! $article->body !!}
|
|
|
|
|
|
<hr />
|
|
|
|
{{ config('blog.publishing_name') }}
|
|
|
|
<x-mail::button :url="route('unsubscribe', ['email' => $email])" color="error">
|
|
Unsubscribe
|
|
</x-mail::button>
|
|
|
|
</x-mail::message>
|