@extends('layouts.admin') @section('title', tr('documents')) @section('content-header', tr('documents')) @section('breadcrumb')
  • {{ tr('home') }}
  • {{ tr('documents') }}
  • @endsection @section('content') @include('notification.notify')
    {{ tr('documents') }} {{ tr('add_document') }}
    @foreach($documents as $i => $document_details) @endforeach
    {{ tr('id') }} {{ tr('name') }} {{ tr('status') }} {{ tr('action') }}
    {{ showEntries($_GET,$i+1) }} {{ $document_details->name }} @if($document_details->status == COMMON_APPROVED) {{ tr('approved') }} @else {{ tr('pending') }} @endif
    {{ $documents->links() }}
    @endsection