@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.

Preview blogs
@csrf @method('DELETE')
@csrf @method('PUT')

Listing page

Blog posts

@error('posts')

{{ $message }}

@enderror

Bottom CTA

@include('platform.website-content.partials._repeater-script') @endsection