@extends('layouts.admin')
@section('title', 'Knowledge Bureau')
@section('content_header')
Knowledge Bureau
@stop
@section('content')
# |
Name |
PDF |
Created At |
Actions |
@forelse($items as $item)
{{ $item->id }} |
{{ $item->name }} |
View PDF
|
{{ $item->created_at->format('Y-m-d') }} |
Edit
|
@empty
No entries found. |
@endforelse
{{ $items->links() }}
@stop