@extends('elibrary.staff.layouts.app') @section('content') @include('elibrary.components.heading', ['title' => 'My Documents', 'url' => route('document.create')]) @forelse($documents as $document)
{!!getIcon($document->type)!!}

{{$document->title}}

@if($document->status==1) Active @else Inactive @endif
@empty

No Documents found.

@endforelse @endsection