{{ $panel }} List

{!! Form::open(['route' => 'print-out.general-certificate', 'id' => 'bulk_action_form']) !!}
{!! Form::select('certificate', $data['certificates'], null, ['class' => 'form-control', 'id'=>'certificate-template', "required"]) !!}

{{ $panel }} Record list on table. Filter {{ $panel }} using the filter.
@if (isset($data['student']) && $data['student']->count() > 0) @php($i=1) @foreach($data['student'] as $student) @php($i++) @endforeach @else @endif
S.N. Faculty/Class Sem./Sec. Reg. Date Reg. Num. Name of Student
{{ $i }} {{ ViewHelper::getFacultyTitle( $student->faculty ) }} {{ ViewHelper::getSemesterTitle( $student->semester ) }} {{ \Carbon\Carbon::parse($student->reg_date)->format('Y-m-d')}} {{ $student->reg_no }} {{ $student->first_name.' '.$student->middle_name.' '. $student->last_name }} {{ ViewHelper::getAcademicStatus($student->academic_status)}}
Data not found.
{!! Form::close() !!}