@extends('backend.layouts.app') @section('title', __('SEO Management')) @section('content')
{{ __('SEO Management') }}
{{ __('Page Manage') }} {{ __('Add SEO') }}
@forelse($seos as $seo) @empty @endforelse
{{ __('Page Name') }} {{ __('Meta Title') }} {{ __('Robots') }} {{ __('Image') }} {{ __('Updated At') }} {{ __('Action') }}
@if ($seo->isGlobal())
{{ __('Global SEO') }} {{ __('Primary') }}
@else @endif
{{ $seo->meta_title[app()->getLocale()] ?? '-' }} {{ strtoupper($seo->robots) }} @if($seo->image) SEO Image @else {{ __('No Image') }} @endif {{ $seo->updated_at->format('d M, Y') }}
{{ __('Manage SEO') }} {{-- Delete Button (Only if not Global SEO) --}} @unless($seo->isGlobal()) {{ __('Delete') }} @endunless

{{ __('No SEO data available.') }}

{{-- Pagination --}}
{{ $seos->links() }}
@endsection