This commit is contained in:
2024-01-26 00:05:44 +05:00
parent 84bcc2e517
commit aaf28aadff

View File

@@ -159,6 +159,6 @@ class User extends Authenticatable
*/
public function profilePage(): string
{
return '/resources/users/'.$this->id;
return sprintf('/resources/users/%s', $this->id);
}
}