@extends('layouts.app') @section('title', 'Knowledge Center') @section('content')

Knowledge Center

@if(auth()->user()->role === 'admin') + Tambah Artikel @endif
@forelse($articles as $article)
{{ ucfirst(str_replace('_', ' ', $article->category)) }} {{ $article->created_at->format('d M Y') }}

{{ $article->title }}

{{ $article->excerpt }}

Baca selengkapnya →
@empty

Belum ada artikel

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