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

Accreditations SEO Details

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