@extends('layouts.admin') @section('title', 'Knowledge Bureau') @section('content_header')

Knowledge Bureau

@stop @section('content')

List of Knowledge Bureau

@forelse($items as $item) @empty @endforelse
# Name PDF Created At Actions
{{ $item->id }} {{ $item->name }} View PDF {{ $item->created_at->format('Y-m-d') }} Edit
@csrf @method('DELETE')
No entries found.
{{ $items->links() }} @stop