IMMREX7
<?php $__env->startSection('content'); ?>
<div class="row clearfix">
<div class="col-sm-5">
<div class="card">
<div class="header">
<h2><strong>Assign Subject</strong></h2>
</div>
<div class="body">
<?php if(isset($teachersubj)): ?>
<?php echo Form::model($teachersubj, ['method' => 'PATCH', 'action' => ['School\AssignSubjectController@update', $teachersubj->idTeacherSubject], 'class' => 'form-horizontal']); ?>
<?php else: ?>
<?php echo Form::open(['url' => 'school/assignsubject', 'class' => 'form-horizontal','id'=>'assignsubject']); ?>
<?php endif; ?>
<div class="row clearfix">
<div class="col-sm-4 form-control-label required">
<label for="classname">Teacher</label>
</div>
<div class="col-sm-7">
<div class="form-group">
<?php echo Form::select('idEmployee',$teachers,null,['class' => 'form-control show-tick ms select2']); ?>
<?php if($errors->has('idTeacher')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('idEmployee')); ?></strong>
</label>
<?php endif; ?>
<span id='teachererror'></span>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-sm-4 form-control-label required">
<label for="classname">Class</label>
</div>
<div class="col-sm-7">
<div class="form-group">
<?php if(isset($teachersubj)): ?>
<?php echo Form::select('idClass',$class,null,['class' => 'form-control show-tick ms']); ?>
<?php else: ?>
<select class="form-control show-tick ms" name="idClass" id="idClass"><option value="">--Select Class --</option></select>
<?php endif; ?>
<?php if($errors->has('idClass')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('idClass')); ?></strong>
</label>
<?php endif; ?>
<span id='classerror'></span>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-sm-4 form-control-label required">
<label for="classname">Subject</label>
</div>
<div class="col-sm-7">
<div class="form-group">
<?php if(isset($teachersubj)): ?>
<?php echo Form::select('idSubject',$subject,null,['class' => 'form-control show-tick ms']); ?>
<?php else: ?>
<!--<select name='idSubject' class="form-control show-tick ms"></select>-->
<div id="subjectlist" style="border:1px solid #ccc; width:200px; height: 110px; overflow-y: scroll;">
</div>
<?php if($errors->has('idSubject')): ?>
<label id="minmaxlength-error" class="error" for="minmaxlength">
<strong><?php echo e($errors->first('idSubject')); ?></strong>
</label>
<?php endif; ?>
<?php endif; ?>
<span id='subjecterror'></span>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-sm-8 offset-sm-2">
<?php if(isset($teachersubj)): ?>
<?php echo Form::submit('UPDATE',['class' => 'btn btn-raised btn-primary btn-round waves-effect']); ?>
<?php else: ?>
<?php echo Form::submit('SAVE',['class' => 'btn btn-raised btn-primary btn-round waves-effect','id'=>'submit-btn']); ?>
<?php endif; ?>
<?php echo Form::close(); ?>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-7">
<div class="card">
<div class="header">
<h2><strong>List Of Assign Subjects</strong></h2>
</div>
<div class="body table-responsive">
<?php echo Form::open(['method' => 'GET', 'action' => ['School\AssignSubjectController@index'], 'class' => 'form-horizontal']); ?>
<div class="row clearfix">
<div class="col-sm-3 form-control-label">
<label for="classname">Financial Year</label>
</div>
<div class="col-sm-5">
<div class="form-group">
<?php echo Form::select('idFinancialYear',fys(),null,['class' => 'form-control show-tick ms']); ?>
</div>
</div>
<div class="col-sm-2">
<?php echo Form::submit('Search',['class' => 'btn btn-raised btn-primary btn-round waves-effect']); ?>
</div>
</div>
<?php echo Form::close(); ?>
<br>
<table class="table table-bordered table-striped table-hover js-basic-example dataTable">
<thead>
<tr>
<th>S. No.</th>
<th>Class</th>
<!--<th>Section</th>-->
<th>Subject</th>
<th>Teacher</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php $i = 1; ?>
<?php $__currentLoopData = $teachersubjects; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<th scope="row"><?php echo e($i); ?></th>
<td><?php echo e($value->classM->className); ?></td>
<!--<td></td>-->
<td><?php echo e(isset($value->subject->subjectName) ? $value->subject->subjectName : 'All'); ?></td>
<td><?php echo e($value->teacher->firstName); ?> <?php echo e($value->teacher->lastName); ?></td>
<td>
<a href="<?php echo e(url('school/assignsubject/' . $value->idTeacherSubject . '/edit')); ?>" class="btn btn-raised btn-info waves-effect btn-round">Edit </a>
<button class="btn btn-raised btn-danger waves-effect btn-round js-sweetalert" data-id="<?php echo e($value->idTeacherSubject); ?>" data-type="confirm">DELETE</button>
</td>
</tr>
<?php $i++; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('script'); ?>
<script>
$(document).ready(function() {
$('select[name="idEmployee"]').on('change', function() {
var classID = $(this).val();
if(classID) {
$.ajax({
url: "<?php echo e(url('/school/teacher')); ?>"+'/' +classID + "/classes",
type: "GET",
dataType: "json",
success:function(data) {
$('#subjectlist').empty();
$('#idClass').empty();
$('#idClass').append('<option value="">-- Select Class --</option>');
$.each(data, function(key, value) {
$('#idClass').append('<option value="'+key+'">'+value+'</option>');
});
}
});
}else{
$('select[name="idSection"]').empty();
}
});
$('select[name="idClass"]').on('change', function() {
var classID = $(this).val();
if(classID) {
$.ajax({
url: "<?php echo e(url('/school/class')); ?>"+'/' +classID + "/subjects",
type: "GET",
dataType: "json",
success:function(data) {
$('#subjectlist').empty();
$('#subjectlist').append('<div class="checkbox-inline" style="padding-left:10px;padding-top:5px;"><label style="margin-right:42px;"><strong>Select All</label></strong><input type="checkbox" class="select-allsub" id="selectallsub"></div>');
$.each(data, function(key, value) {
$('#subjectlist').append('<div class="checkbox-inline" style="padding-left:10px;"><label style="margin-right:10px;">'+value+'</label><input type="checkbox" name="subjects[]" value="'+key+'" class="subclass"></div>');
});
}
});
}else{
$('select[name="subjectlist"]').empty();
}
});
});
$(document).on('click', '.select-all', function(){
var checkAll = this.checked;
if(checkAll === true){
$('.secclass').each(function () {
this.checked = checkAll;
});
}else{
$('.secclass').each(function () {
this.checked = checkAll;
});
}
});
$(document).on('click', '.select-allsub', function(){
var checkAllsub = this.checked;
if(checkAllsub === true){
$('.subclass').each(function () {
this.checked = checkAllsub;
});
}else{
$('.subclass').each(function () {
this.checked = checkAllsub;
});
}
});
$(document).on('click', '.js-sweetalert', function (e) {
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
e.preventDefault();
var id = $(this).data('id');
swal({
title: "Are you sure?",
text: "Are You sure you want to delete this Assigned Subject!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
closeOnConfirm: true
},
function() {
// console.log('here');
$.ajax({
type: "DELETE",
url: "<?php echo e(url('/school/assignsubject/')); ?>" +"/"+id,
data: {id:id}
})
.done(function(data) {
swal({
title: "Deleted",
text: "This Subject Assignment has been successfully deleted",
type: "success"
},function() {
location.reload();
});
})
.error(function(data) {
swal("Oops", "We couldn't connect to the server!", "error");
});
return false;
});
});
$('#assignsubject').on('submit',function(e){
$.ajaxSetup({
header:$('meta[name="_token"]').attr('content')
});
var formData = new FormData($('#assignsubject')[0]);
$("#submit-btn").prop('disabled', true);
$.ajax({
type:"POST",
url: "<?php echo e(url('school/assignsubject')); ?>",
processData: false,
contentType: false,
data:formData,
dataType: 'json',
success:function(data){
if( data[Object.keys(data)[0]] === 'SUCCESS' ){
$("#submit-btn").prop('disabled', true);
window.location = "<?php echo e(url('school/assignsubject')); ?>";
}
else { //False Case: With error msg
$("#msg").html(data); //$msg is the id of empty msg
}
},
error: function(data){
if( data.status === 422 ) {
$("#submit-btn").prop('disabled', false);
var errors = data.responseJSON.errors;
var errorHtml = '<div class="alert alert-danger"><ul>';
$('#formerrors').html(errorHtml);
if(errors['idClass']=== undefined){
$( '#classerror' ).empty();
}else{
errorname = '<span class="help-block"><strong>'+errors['idClass']+'</strong></span>';
$( '#classerror' ).html( errorname );
}
if(errors['idSection']=== undefined){
$( '#sectionerror' ).empty();
}else{
errorname = '<span class="help-block"><strong>'+errors['idSection']+'</strong></span>';
$( '#sectionerror' ).html( errorname );
}
if(errors['idEmployee']=== undefined){
$( '#teachererror' ).empty();
}else{
errorname = '<span class="help-block"><strong>'+errors['idEmployee']+'</strong></span>';
$( '#teachererror' ).html( errorname );
}
if(errors['idSubject']=== undefined){
$( '#subjecterror' ).empty();
}else{
errorname = '<span class="help-block"><strong>'+errors['idSubject']+'</strong></span>';
$( '#subjecterror' ).html( errorname );
}
}
}
});
return false;
});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('schools.school_layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
Copyright © 2021 -