Skip to content

Commit

Permalink
Replace use of deprecated site_url helper method
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Poyigi <[email protected]>
  • Loading branch information
sampoyigi committed May 17, 2024
1 parent e9aa515 commit d4937a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/mail/invite_customer.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

Click the link below to accept this invitation to gain access to {{ $site_name }}.

{{ site_url('forgot-password?code='.$invite_code) }}
{{ page_url('account.reset').'?code='.$invite_code }}
==
{{ $full_name }}, you've been invited to access {{ $site_name }}

Accept this invitation to gain access to {{ $site_name }}.

@partial('button', ['url' => site_url('forgot-password?code='.$invite_code), 'type' => 'primary'])
@partial('button', ['url' => page_url('account.reset').'?code='.$invite_code, 'type' => 'primary'])
Accept Invitation
@endpartial

0 comments on commit d4937a9

Please sign in to comment.