Linked Students List

{!! Form::open(['route' => $base_route.'.link','method' => 'POST', 'class' => 'form-horizontal', "enctype" => "multipart/form-data"]) !!}
{!! Form::hidden('guardian_id', $data['guardian']->id, ["placeholder" => "", "class" => "col-xs-5 col-sm-5"]) !!} {!! Form::label('guardian_info', 'Find Student Using Name | Mobile Number | Email & Click on Link Now ', ['class' => 'col-sm-12 control-label align-center']) !!}
{!! Form::select('student_link_id', [], null, ["placeholder" => "Type Student Reg.No. or Contact Number or Name...", "class" => "col-xs-12 col-sm-12", "style" => "width: 100%;"]) !!} @include('includes.form_fields_validation_message', ['name' => 'student_link_id'])
{!! Form::close() !!}
Students List Which is Links with Guardian.
@if (isset($data['guardian']) && $data['guardian']->students()->count() > 0) @php($i=1) @foreach($data['guardian']->students()->get() as $student) @php($i++) @endforeach @else @endif
S.N. Faculty/Class Sem. Reg.Num Student Name Status
{{ $i }} {{ ViewHelper::getFacultyTitle( $student->faculty ) }} {{ ViewHelper::getSemesterTitle( $student->semester ) }} {{ $student->reg_no }} {{ $student->first_name.' '.$student->middle_name.' '. $student->last_name }}
Unlink
No {{ $panel }} data found. Please Filter {{ $panel }} to show.
{!! Form::close() !!}