Appearance

You may use a custom logo by placing a value in your appsettings.json file(s) under the path Coravel:Pro:LogoURL.

For example:

{
  "Coravel": {
    "Pro": {
      "LogoURL": "https://www.mysite.com/mylogo.png"
    }
  }
}

You can set a custom URL that will be used whenever the default Coravel logo or a custom logo is clicked by an end-user. Add value in your appsettings.json file(s) under the path Coravel:Pro:LogoLinkURL.

{
  "Coravel": {
    "Pro": {
      "LogoLinkURL": "https://www.mysite.com"
    }
  }
}

Display Dates In User's Timezone

By default, Coravel Pro will display all dates in UTC time. To override this and use the timezone of the user who's viewing the web page, set the following configuration value in your appsettings.json file:

{
  "Coravel": {
    "Pro": {
      "UseClientTimezone": "true"
    }
  }
}