@extends('layouts.admin') @section('title', tr('view_documents')) @section('content-header') {{ tr('view_documents') }} @if($provider_details) - {{ $provider_details ? $provider_details->name : "" }} @endif @if($document_details) - {{ $document_details ? $document_details->name : "" }} @endif @endsection @section('breadcrumb')
  • {{ tr('home') }}
  • {{ tr('providers') }}
  • {{ tr('view_documents') }}
  • @endsection @section('content') @include('notification.notify')
    @if(count($provider_documents) > 0) @foreach($provider_documents as $index => $provider_document_details) @endforeach
    {{ tr('id') }} {{ tr('provider') }} {{ tr('document_type') }} {{ tr('view') }}
    {{ showEntries($_GET,$index+1) }} {{ $provider_document_details->provider ? $provider_document_details->provider->name : "" }} {{ $provider_document_details->document->name }} {{ tr('view') }}
    {{ $provider_documents->links() }}
    @else

    {{ tr('no_result_found') }}

    @endif
    @endsection