File: /home/xedaptot/iphim.naniguide.com/storage/framework/views/fa1e13385985b5361c5c6d5d2d7012d9.php
<meta property="og:site_name" content="<?php echo e(settings('branding.site_name')); ?>" />
<meta property="twitter:card" content="summary" />
<title>
<?php echo e($title->name); ?> (<?php echo e($title->year); ?>) -
<?php echo e(settings('branding.site_name')); ?>
</title>
<meta property="og:url" content="<?php echo e(urls()->title($title)); ?>" />
<link rel="canonical" href="<?php echo e(urls()->title($title)); ?>" />
<meta
property="og:title"
content="<?php echo e($title->name); ?> (<?php echo e($title->year); ?>) - <?php echo e(settings('branding.site_name')); ?>"
/>
<?php if($title->poster): ?>
<meta property="og:image" content="<?php echo e(urls()->image($title->poster)); ?>" />
<meta property="og:width" content="300" />
<meta property="og:height" content="450" />
<?php endif; ?>
<meta property="og:description" content="<?php echo e($title->description); ?>" />
<meta name="description" content="<?php echo e($title->description); ?>" />
<meta
property="keywords"
content="reviews,photos,user ratings,synopsis,trailers,credits"
/>
<meta property="og:type" content="video.movie" />
<script type="application/ld+json">
<?php echo collect([
'@context' => 'http://schema.org',
'@type' => 'Movie',
'name' => $title->name,
'@id' => urls()->title($title),
'url' => urls()->title($title),
'image' => urls()->image($title->poster),
'description' => $title->description,
'genre' => $title->genres->pluck('name')->toArray(),
'keywords' => $title->keywords->pluck('name')->join(','),
'contentRating' => $title->certification,
'actor' => isset($credits['actors']) ? $credits['actors']->slice(0, 10)->map(function ($actor) {
return [
'@type' => 'Person',
'name' => $actor->name,
'url' => urls()->person($actor),
];
}) : null,
'director' => isset($credits['directing']) ? $credits['directing']->map(function ($director) {
return [
'@type' => 'Person',
'name' => $director->name,
'url' => urls()->person($director),
];
}) : null,
'creator' => isset($credits['creators']) ? $credits['creators']->map(function ($creator) {
return [
'@type' => 'Person',
'name' => $creator->name,
'url' => urls()->person($creator),
];
}) : null,
'datePublished' => $title->year,
'duration' => $title->runtime,
'aggregateRating' => $title->rating ? [
'@type' => 'AggregateRating',
'ratingValue' => $title->rating,
'ratingCount' => $title->vote_count,
'bestRating' => '10',
'worstRating' => '1',
] : null,
])->filter()->toJson(); ?>
</script>
<?php /**PATH /home/mrsimple/iphim.naniguide.com/resources/views/seo/title-page/seo-tags.blade.php ENDPATH**/ ?>