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

SEO Industries Page Details

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