@extends('admin.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('admin.partials.rtl-style') @section('content')
@csrf
{{ __('Update SEO Informations') }}
@includeIf('admin.partials.languages')
@if ($settings->shop_status == 1)
@endif
@if (count($pages) > 0) @foreach ($pages as $page) @php $pageContent = App\Models\CustomPage\PageContent::where('page_id', $page->id) ->where('language_id', $defaultLang->id) ->first(); @endphp
@endforeach @endif
@endsection