Certificate manager built on Laravel 13, Livewire 4, and Flux. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
18 lines
519 B
PHP
18 lines
519 B
PHP
<x-mail::message>
|
|
# {{ __('Certificates shared with you') }}
|
|
|
|
{{ __(':name has shared the following certificates with you.', ['name' => $senderName]) }}
|
|
|
|
@foreach ($links as $link)
|
|
<x-mail::button :url="$link['url']">
|
|
{{ $link['title'] }}
|
|
</x-mail::button>
|
|
@endforeach
|
|
|
|
{{ __('These links are valid until :date, after which they will stop working.', ['date' => $expiresAt]) }}
|
|
|
|
{{ __('If you did not expect this email, you can safely ignore it.') }}
|
|
|
|
{{ __('Thanks') }},<br>
|
|
{{ config('app.name') }}
|
|
</x-mail::message>
|