@extends('layouts.admin') @section('title', 'Industries Pages SEO') @section('content_header')

Industries Pages SEO Management

@stop @section('content')

Industries Pages

@foreach($pages as $slug => $name) @php $seo = \App\Models\IndustriesPageSeo::getBySlug($slug); $hasSeo = $seo && ($seo->meta_title || $seo->meta_description); @endphp @endforeach
Page Name Slug SEO Status Actions
{{ $name }} {{ $slug }} @if($hasSeo) Configured @else Not Configured @endif Edit SEO Enquiries
@stop