@extends("layout") @section("content")
{{ Form::open(array('route' => array('reports.aggregate.moh706'), 'class' => 'form-inline')) }}
{{ Form::label('start', trans('messages.from')) }}
{{ Form::text('start', $from?$from:date('Y-m-01'),array('class' => 'form-control standard-datepicker')) }}
{{ Form::label('end', trans('messages.to')) }}
{{ Form::text('end', $end?$end:date('Y-m-d'),array('class' => 'form-control standard-datepicker')) }}
{{ Form::button(" ".trans('messages.view'), array('class' => 'btn btn-info', 'id' => 'filter', 'type' => 'submit')) }}
{{Form::submit('Export to Excel', array('class' => 'btn btn-success', 'id'=>'excel', 'name'=>'excel'))}}
{{ Form::close() }}

{{ trans('messages.moh-706') }}
@if (Session::has('message'))
{{ trans(Session::get('message')) }}
@endif

{{ strtoupper(Lang::choice('messages.moh', 1)) }}
{{ strtoupper(Lang::choice('messages.lab-tests-data-report', 1)) }}

{{ Lang::choice('messages.facility', 1) }}: {{ strtoupper(Config::get('kblis.organization')) }} {{ Lang::choice('messages.reporting-period', 1) }} {{ Lang::choice('messages.begin-end', 1) }}: {{ $from }} {{ Lang::choice('messages.begin-end', 2) }}: {{ $end }} {{ Lang::choice('messages.affiliation', 1) }}: {{ Lang::choice('messages.gok', 1) }}:

{{ Lang::choice('messages.no-service', 1) }}

{{ $table }}
@stop