Skip to content

Commit

Permalink
Merge pull request #47 from tomatophp/develop
Browse files Browse the repository at this point in the history
update app icon meta
  • Loading branch information
3x1io authored Mar 30, 2024
2 parents ca550b5 + 86f5095 commit bb4bdd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/CircleApps/resources/views/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
SEO::openGraphSiteName($app->name . ' | '. setting('site_name'));
SEO::openGraphTitle($app->name . ' | '. setting('site_name'));
SEO::openGraphUrl(url()->current());
SEO::openGraphImage(setting('site_profile'));
SEO::openGraphImage($app->getMedia('logo')->first()?->getUrl ?? setting('site_profile'));
SEO::metaByProperty('og:description',$app->description ?? setting('site_description'));
SEO::twitterCard('summary_large_image');
SEO::twitterTitle($app->name . ' | '. setting('site_name'));
SEO::twitterDescription($app->description ?? setting('site_description'));
SEO::twitterImage(setting('site_profile'));
SEO::twitterImage($app->getMedia('logo')->first()?->getUrl ?? setting('site_profile'));
SEO::canonical(url()->current());
@endphp
Expand Down

0 comments on commit bb4bdd8

Please sign in to comment.