@extends('layouts.admin') @section('title', 'SEO Events Page Details') @section('content_header')

SEO Events Page Details

@stop @section('content')
Basic SEO Information
Meta Title:
{{ $seo->meta_title ?: 'N/A' }}
Meta Description:
{{ $seo->meta_description ?: 'N/A' }}
Robots Content:
{{ $seo->robots_content ?: 'index, follow' }}
Canonical URL:
@if($seo->canonical_url) {{ $seo->canonical_url }} @else Not set (will use current page URL) @endif
Last Updated:
{{ $seo->updated_at ? $seo->updated_at->format('M d, Y') : 'N/A' }}
Open Graph Tags
OG Title:
{{ $seo->og_title ?: 'Not set (will use Meta Title)' }}
OG Description:
{{ $seo->og_description ?? 'Not set (will use Meta Description)' }}
OG Image:
@if($seo->og_image) {{ $seo->og_image }} @else Not set (will use default image) @endif
Twitter Card Tags
Twitter Title:
{{ $seo->twitter_title ?: 'Not set (will use Meta Title)' }}
Twitter Description:
{{ $seo->twitter_description ?? 'Not set (will use Meta Description)' }}
Twitter Image:
@if($seo->twitter_image) {{ $seo->twitter_image }} @else Not set (will use OG Image or default) @endif
Custom Scripts
Header Scripts:
@if($seo->header_scripts) {{ strlen($seo->header_scripts) }} characters
{{ $seo->header_scripts }}
@else No scripts added @endif
Body Scripts:
@if($seo->body_scripts) {{ strlen($seo->body_scripts) }} characters
{{ $seo->body_scripts }}
@else No scripts added @endif
@stop