@extends('admin.layouts.home') @section('title', 'Help Center Articles') @section('content')

Help Center Articles

Create step-by-step guides, FAQs, and troubleshooting docs for your community.

@if (session('success')) @endif
Knowledge Articles
@forelse ($articles as $article) @empty @endforelse
Article Topic Featured Published Read (min) Order Updated Actions
{{ $article->title }}
/{{ $article->slug }}
{{ $article->topic?->title ?? '—' }} @if ($article->is_featured) @else @endif @if ($article->is_published) Published @else Draft @endif {{ $article->estimated_reading_time ?? '—' }} {{ $article->display_order }} {{ $article->updated_at?->diffForHumans() ?? '—' }}
@csrf @method('DELETE')
No help center articles found. Start by creating one.
@if ($articles->hasPages()) @endif
@endsection