{{ $panel }} List

{!! Form::open(['route' => $base_route.'.transfering', 'id' => 'bulk_action_form']) !!}
{!! Form::select('faculty', $data['faculties'], null, ['class' => 'form-control', 'onChange' => 'loadSemesters(this);','id'=>'transfer-faculty', "required"]) !!}
{!! Form::select('student_status', $data['student_status'], null, ['class' => 'form-control','id'=>'transfer-status' , "required"]) !!}

{{ $panel }} Record list on table. Filter list using search box as your Wish.
@if (isset($data['student']) && $data['student']->count() > 0) @php($i=1) @foreach($data['student'] as $student) @php($i++) @endforeach @else @endif
S.N. Faculty Semester Reg. Date Reg. Number 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 }}
No {{ $panel }} data found.
{!! Form::close() !!}