Skip to content

Instantly share code, notes, and snippets.

@BjornDCode
Last active October 22, 2021 09:40
Show Gist options
  • Save BjornDCode/29d651221f098e0ebf8110daeedf88ff to your computer and use it in GitHub Desktop.
Save BjornDCode/29d651221f098e0ebf8110daeedf88ff to your computer and use it in GitHub Desktop.
<!-- Open graph -->
@php
$form = $page['props']['form'];
$backgroundColor = urlencode($form->branding->primary_color); // $form->branding->primary_color is a hex string e.g '#333333'
$title = urlencode($form->name);
if (!is_null($form->branding->logo)) {
$image = urlencode($form->branding->logo);
$ogImage = "https://api.placid.app/u/xcqiqw9tj?Background[background_color]={$backgroundColor}&FormName[text]={$title}&Logo[image]={$image}";
} else {
$ogImage = "https://api.placid.app/u/3uugfu8j8?Background[background_color]={$backgroundColor}&FormName[text]={$title}";
}
@endphp
<meta property="og:image" content="{{ $ogImage }}">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment