Skip to content

Instantly share code, notes, and snippets.

@hapidjus
Created November 24, 2019 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hapidjus/774e6f4a2717e10c6547c1a4e472028f to your computer and use it in GitHub Desktop.
Save hapidjus/774e6f4a2717e10c6547c1a4e472028f to your computer and use it in GitHub Desktop.
Laravel Route to test send notification
Route::get('preview-emails', function () {
$message = (new \App\Notifications\TicketCreated(\App\Ticket::first()))->toMail('test@test.com');
return $message->render();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment