@extends('layouts.main') @section('content')
{!! Form::open(['url'=>'document_statistics', 'class'=>'form', 'id'=>'frmStatistics']) !!}
Tracked Documents: {{ $overall }}
{!! Form::text('searchTxt', $textbox, ['class' => 'form-control', 'placeholder' => 'Enter Year']) !!} {!! Form::button(' Filter', ['class' => 'btn btn-primary btn-xs', 'type' => 'submit', 'title' => 'Filter']) !!} Reset
@if($pending == 0 && $total_ontimes == 0 && $total_beyonds == 0)
No document(s) found for this year.
@else @endif
{!! Form::close() !!} @stop