@extends('layouts.admin') @section('title', 'Pages') @section('breadcrumb') @endsection @section('content')
Manage your website pages and content
| Page Title | Status | SEO Score | Last Updated | Actions |
|---|---|---|---|---|
|
@if($page->is_homepage)
🏠
@endif
{{ $page->title }}
/{{ $page->slug }}
|
@if($page->trashed()) Trash @elseif($page->status === 'published') Published @elseif(in_array($page->status, ['pending_review', 'pending_client'])) Pending Review @else Draft @endif |
@php $score = app(\App\Services\SEO\SeoScoringService::class)->score($page) @endphp
{{ $score }}
|
{{ $page->updated_at->diffForHumans() }}
@if($page->lastEditor)
by {{ $page->lastEditor->name }}
@endif
|
@if(!$page->trashed())
Edit
@if($page->status !== 'published')
@endif
@endif
|
|
No Pages Created
Your website is ready for content. Create your first page to start building.
@can('pages.create')
Create Page
@endcan
|
||||