@php
$value = fn ($field, $default = '') => old($field, optional($item)->$field ?? $default);
@endphp
@extends('layouts.admin')
@section('content')
{{ $item ? 'Edit article' : 'Content manager' }} Create and update SEO articles used across the public website.{{ $item ? $item->title : 'Blog CMS' }}
| Title | Category | Slug | |
|---|---|---|---|
| {{ $post->title }}{{ $post->excerpt }} | {{ $post->category }} | {{ $post->slug }} | @include('admin.partials.record-actions', ['type' => 'blog', 'id' => $post->id, 'view' => route('blog.show', $post->slug), 'edit' => route('admin.blog', ['action' => 'edit', 'id' => $post->id]), 'trashed' => $trashMode]) |
| No blog posts added yet. | |||