@extends('admin.layout') @section('content')
@csrf
{{ __('SEO Informations') }}
@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