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

AYUSH SEO Details

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