Skip to content

Commit

Permalink
Fix url
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubKermes committed Jan 10, 2024
1 parent 2b18571 commit 2c9244f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Mail/ChangeInFavourites.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public function __construct($city, $provider, $change)
$this->city = $city;
$this->provider = $provider;
$this->change = $change;
$this->url = env("APP_URL");
}

/**
Expand All @@ -49,7 +50,7 @@ public function content(): Content
"city" => $this->city,
"provider" => $this->provider,
"change" => $this->change,
"url" => env("APP_URL"),
"url" => $this->url,
],
);
}
Expand Down

0 comments on commit 2c9244f

Please sign in to comment.