Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Feb 19, 2020
1 parent 54fb709 commit 641a7cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Notifications/Messages/SimpleMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public function toArray()
'outroLines' => $this->outroLines,
'actionText' => $this->actionText,
'actionUrl' => $this->actionUrl,
'actionUrlReadable' => str_replace(['mailto:', 'tel:'], '', $this->actionUrl),
'displayableActionUrl' => str_replace(['mailto:', 'tel:'], '', $this->actionUrl),
];
}
}
4 changes: 2 additions & 2 deletions src/Illuminate/Notifications/resources/views/email.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
@slot('subcopy')
@lang(
"If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\n".
'into your web browser: [:actionUrlReadable](:actionURL)',
'into your web browser: [:displayableActionUrl](:actionURL)',
[
'actionText' => $actionText,
'actionUrlReadable' => $actionUrlReadable,
'actionURL' => $actionUrl,
'displayableActionUrl' => $displayableActionUrl,
]
)
@endslot
Expand Down

0 comments on commit 641a7cd

Please sign in to comment.