@extends('layouts.app') @section('title', 'Knowledge Intelligence Hub') @push('styles') @endpush @section('content') @php $actionsHtml = '
'.csrf_field().'
New Article
'; @endphp @include('components.page-header', [ 'title' => 'Engineering Knowledge Hub', 'description' => 'Centralized repository for SOPs, architectural documentation, and real-time engineering guides.', 'breadcrumbs' => ['Home' => route('admin.dashboard'), 'Knowledge Base' => '#'], 'actions' => $actionsHtml ])

Centralized Intelligence Search

@forelse($articles as $article)
{{ str_replace('_', ' ', $article->type) }}

{{ $article->title }}

{!! strip_tags($article->content) !!}
@foreach($article->tags as $tag) #{{ $tag->name }} @endforeach
UPDATED {{ $article->updated_at->diffForHumans() }}
@empty

No organizational knowledge detected

Try adjusting your search filters or initialize the AI Auto-Doc engine.

@endforelse
@if($articles->hasPages())
{{ $articles->links() }}
@endif @endsection