@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
Sr. No. Name PDF Created At Actions
{{ ($items->currentPage() - 1) * $items->perPage() + $loop->iteration }} {{ $item->name }} View PDF {{ $item->created_at->format('M d, Y h:i A') }} Edit
@csrf @method('DELETE')
No entries found.
@include('admin.partials.pagination', ['items' => $items, 'itemName' => 'items'])
@stop