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

SEO News Page Details

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