@extends($layout) @section('header_scripts') @stop @section('content')
{!! Form::open(array('url' => URL_PRINT_TEACHER_ASSIGMENTS_REPORT, 'method' => 'POST', 'name'=>'htmlform','target'=>'_blank', 'id'=>'htmlform', 'novalidate'=>'')) !!}

{{$title}}

{{ Form::label('branch_id', getphrase('branch')) }} * {{Form::select('branch_id', $branches, null, ['class'=>'form-control', 'id'=>'branch_id', 'ng-model'=>'branch_id', 'required'=> 'true', "ng-change" => "getAcademicDetails(branch_id)", 'ng-class'=>'{"has-error": htmlform.branch_id.$touched && htmlform.branch_id.$invalid}' ])}}
{!! getValidationMessage()!!}
{{ Form::label('date_from', getphrase('date_from')) }} {{ Form::text('date_from', $value = $date_from , [ 'class'=>'input-sm form-control', 'placeholder' => '2015/7/17', 'ng-model'=>'date_from', 'required'=> 'true', 'ng-class'=>'{"has-error": htmlform.date_from.$touched && htmlform.date_from.$invalid}' ])}}
{{ Form::label('date_to', getphrase('date_to')) }} {{ Form::text('date_to', $value = $date_to , [ 'class'=>'input-sm form-control', 'placeholder' => '2015/7/17', 'ng-model'=>'date_to', 'required'=> 'true', 'ng-class'=>'{"has-error": htmlform.date_to.$touched && htmlform.date_to.$invalid}' ]) }}
{{ Form::label('search_type', getphrase('search_type')) }} {{Form::select('search_type', array('1'=>'Teachers Wise','2'=>'Class & Subject Wise'), null, ['class'=>'form-control', 'id'=>'search_type', 'required'=> 'true', 'ng-model'=>'search_type', ])}}
Search
{{getPhrase('sno')}} {{getPhrase('teacher')}} {{getPhrase('title')}} {{getPhrase('course')}} {{getPhrase('subject')}} {{getPhrase('date')}}
@{{$index+1}} @{{user.teacher_name}} @{{user.title}} @{{user.course_title}} @{{user.subject_title}} @{{user.created_at}}

{{getPhrase('no_data_available')}}
{!! Form::close() !!} @stop @section('footer_scripts') @include('assignments.reports.scripts.getreports-script') @stop