@php // Debug and fix the availableLocales issue if (empty($availableLocales)) { $availableLocales = [ 'ar' => [ 'name' => 'Arabic', 'native' => 'العربية', 'dir' => 'rtl', ], 'en' => [ 'name' => 'English', 'native' => 'English', 'dir' => 'ltr', ], 'fr' => [ 'name' => 'French', 'native' => 'Français', 'dir' => 'ltr', ], ]; } @endphp @extends('admin.layouts.app') @section('title', __('seo_management')) @section('breadcrumb')
{{ __('manage_seo_settings_description') }}
{{ __('Meta Title') }}:
{{ Str::limit($globalSettings->meta_title, 50) ?: __('Not set') }}
{{ __('Meta Description') }}:
{{ Str::limit($globalSettings->meta_description, 80) ?: __('Not set') }}
{{ __('No SEO settings found') }}
@endif {{ __('Edit') }}