Skip to content

Commit

Permalink
Fixes issue #25 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiewebb committed Mar 15, 2023
1 parent 90649c7 commit a4c0e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/emails/userCreated.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
'{recipient_display_name}' => $user->display_name,
'{actor_display_name}' => $blueprint->user->display_name,
'{forum_url}' => $url->to('forum')->base(),
'{user_url}' => $url->to('forum')->route('user', ['username' => $slugManager->forResource($blueprint->user::class)->toSlug($blueprint->user)]),
'{user_url}' => $url->to('forum')->route('user', ['username' => $slugManager->forResource(get_class($blueprint->user))->toSlug($blueprint->user)]),
]) !!}

0 comments on commit a4c0e56

Please sign in to comment.