auth work

This commit is contained in:
Romulus21
2024-07-17 07:09:04 +02:00
parent 6be48846b0
commit a34eadb51f
13 changed files with 1125 additions and 1042 deletions

View File

@@ -15,9 +15,7 @@ class Reset extends Mailable
/**
* Create a new message instance.
*/
public function __construct(private readonly string $token)
{
}
public function __construct(private readonly string $token) {}
/**
* Get the message envelope.
@@ -37,7 +35,7 @@ class Reset extends Mailable
return new Content(
markdown: 'mails.reset_password',
with: [
'link' => config('gpao.front_url').'/reset/'.$this->token,
'link' => config('app.url').'/reset/'.$this->token,
]
);
}