@extends('layouts.admin')
@section('title', 'Knowledge Bureau')
@section('content_header')
Knowledge Bureau
@stop
@section('content')
| Sr. No. |
Name |
PDF |
Created At |
Actions |
@forelse($items as $item)
| {{ ($items->currentPage() - 1) * $items->perPage() + $loop->iteration }} |
{{ $item->name }} |
View PDF
|
{{ $item->created_at->format('M d, Y h:i A') }} |
Edit
|
@empty
| No entries found. |
@endforelse
@include('admin.partials.pagination', ['items' => $items, 'itemName' => 'items'])
@stop