@extends('layouts.app') @section('title', 'Blogs') @section('page-title', 'Blogs') @section('breadcrumb', 'Platform Admin / Blogs') @section('content') @php $posts = old('posts', $content['posts'] ?? []); if (!is_array($posts) || count($posts) === 0) { $posts = [['slug'=>'','title'=>'','excerpt'=>'','body'=>'','tag'=>'','date'=>'','read'=>'','author'=>'Learnyst Team','featured'=>false,'is_active'=>true]]; } @endphp
Manage blog listing content and individual posts. Detail pages use each post slug.