Skip to content

Instantly share code, notes, and snippets.

@goodjack
Created December 12, 2018 07:51
Show Gist options
  • Save goodjack/ccb85b295e60c31c1ce1ac3e89cd9718 to your computer and use it in GitHub Desktop.
Save goodjack/ccb85b295e60c31c1ce1ac3e89cd9718 to your computer and use it in GitHub Desktop.
讓 Laravel 可以用網頁預覽測試 Markdown Mail
<?php
// 省略...
Route::get('mails/user', function () {
$markdown = new Illuminate\Mail\Markdown(view(), config('mail.markdown'));
$user = \App\User::first();
return $markdown->render('mails.user', [
'user' => $user,
]);
});
// https://laracasts.com/discuss/channels/laravel/preview-markdown-emails
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment