@extends('admin.layouts.app') @section('title', 'SEO Settings') @section('breadcrumb') @endsection @section('content')
@foreach($pages as $slug => $label) @php $seo = $seoList[$slug] ?? null; @endphp

@csrf
@if($seo && $seo->seo_title)
{{ strlen($seo->seo_title) }} chars
@endif
@if($seo && $seo->seo_description)
{{ strlen($seo->seo_description) }}/160 chars
@endif
@if($seo && $seo->og_image)
@endif
Recommended: 1200×630px JPG/PNG
{{-- Google Preview --}} @if($seo && $seo->seo_title)
Search Preview
{{ $seo->seo_title }}
{{ url('/') }}/{{ $slug }}
{{ Str::limit($seo->seo_description, 155) }}
@endif
@endforeach
@endsection