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

SEO Home Page Details

@stop @section('content')
Basic SEO Information
Meta Title:
{{ $homeSeo->meta_title_display }}
Meta Description:
{{ $homeSeo->meta_description_display }}
Robots Content:
{{ $homeSeo->robots_content ?: 'index, follow' }}
Canonical URL:
@if($homeSeo->canonical_url) {{ $homeSeo->canonical_url }} @else Not set (will use current page URL) @endif
Last Updated:
{{ $homeSeo->last_updated_display }}
Open Graph Tags
OG Title:
{{ $homeSeo->og_title_display }}
OG Description:
{{ $homeSeo->og_description ?? 'Not set (will use Meta Description)' }}
OG Image:
@if($homeSeo->og_image) {{ $homeSeo->og_image }} @else Not set (will use default image) @endif
Twitter Card Tags
Twitter Title:
{{ $homeSeo->twitter_title_display }}
Twitter Description:
{{ $homeSeo->twitter_description ?? 'Not set (will use Meta Description)' }}
Twitter Image:
@if($homeSeo->twitter_image) {{ $homeSeo->twitter_image }} @else Not set (will use OG Image or default) @endif
Custom Scripts
Header Scripts:
@if($homeSeo->header_scripts) {{ $homeSeo->header_scripts_length }} characters
{{ $homeSeo->header_scripts }}
@else No scripts added @endif
Body Scripts:
@if($homeSeo->body_scripts) {{ $homeSeo->body_scripts_length }} characters
{{ $homeSeo->body_scripts }}
@else No scripts added @endif
@stop