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

Sustainability Training SEO Details

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