IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/resources/views/schools/practiceset/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/resources/views/schools/practiceset/index.blade.php

@extends('schools.school_layout')
@section('content')
<div class="row clearfix">
    <div class="col-sm-5">
        <div class="card">
            <div class="header">
                <h2><strong>@if(isset($pset))Edit @else  Add @endif</strong>Practice Sheet</h2>
            </div>
            <div class="body">
                @if(isset($pset))
                {!! Form::model($pset, ['method' => 'PATCH', 'action' => ['School\PractiseSetController@update', $pset->idSet], 'class' => 'form-horizontal']) !!}
                @else
                {!! Form::open(['url' => 'school/practiceset', 'class' => 'form-horizontal','id'=>'homework_form']) !!}
                @endif
                <div class="row clearfix">
                    <div class="col-sm-4 form-control-label">
                        <label for="classname" class="required">Class</label>
                    </div>
                    <div class="col-sm-8">
                        <div class="form-group">
                            {!! Form::select('idClass',$classes,null,['class' => 'form-control show-tick ms select2']) !!}
                            @if ($errors->has('idClass'))
                            <label id="minmaxlength-error" class="error" for="minmaxlength">
                                <strong>{{ $errors->first('idClass') }}</strong>
                            </label>
                            @endif
                            <span id='classerror'></span>
                        </div>
                    </div>
                </div>
                <div class="row clearfix">
                    <div class="col-sm-4 form-control-label">
                        <label for="classname" class="required">Select Section</label>
                    </div>
                    <div class="col-sm-8">
                        <div class="form-group">
                            @if(isset($pset))
                            {!! Form::select('idSection',$section,null,['class' => 'form-control show-tick ms select2']) !!}
                            @else
                            <div id="idSection" style="border:1px solid #ccc; width:250px; height: 110px; overflow-y: scroll;">
                                
                            </div>
                            @if ($errors->has('idSection'))
                            <label id="minmaxlength-error" class="error" for="minmaxlength">
                                <strong>{{ $errors->first('idSection') }}</strong>
                            </label>
                            @endif
                            <span id='sectionerror'></span>
                            @endif
                        </div>
                    </div>
                </div>
                <div class="row clearfix">
                    <div class="col-sm-4 form-control-label">
                        <label for="classname">EC No.</label>
                    </div>
                    <div class="col-sm-8">
                        <div class="form-group">
                            @if(isset($pset))
                            {!! Form::select('idStudent',$student,null,['class' => 'form-control show-tick ms']) !!}
                            @else
                            <div id="idStudent" style="border:1px solid #ccc; width:250px; height: 110px; overflow-y: scroll;">
                                
                            </div>
                            @if ($errors->has('ecNO'))
                            <label id="minmaxlength-error" class="error" for="minmaxlength">
                                <strong>{{ $errors->first('ecNO') }}</strong>
                            </label>
                            @endif
                            @endif
                            <span id="ecnoerror"></span>
                        </div>
                    </div>
                </div>
                <div class="row clearfix">
                    <div class="col-sm-4 form-control-label">
                        <label for="classname" class="required">Subject</label>
                    </div>
                    <div class="col-sm-8">
                        <div class="form-group">
                           {!! Form::text('subject',null,['class' => 'form-control']) !!}
                           @if ($errors->has('subject'))
                            <label id="minmaxlength-error" class="error" for="minmaxlength">
                                <strong>{{ $errors->first('subject') }}</strong>
                            </label>
                            @endif
                            <span id="subjecterror"></span>
                        </div>
                    </div>
                </div>
                <div class="row clearfix">
                    <div class="col-sm-4 form-control-label">
                        <label for="classname" class="required">Message</label>
                    </div>
                    <div class="col-sm-8">
                        <div class="form-group">
                           {!! Form::textarea('message',null,['class' => 'form-control','size'=>'30x2']) !!}
                           @if ($errors->has('message'))
                            <label id="minmaxlength-error" class="error" for="minmaxlength">
                                <strong>{{ $errors->first('message') }}</strong>
                            </label>
                            @endif
                            <span id="homeworkerror"></span>
                        </div>
                    </div>
                </div>
                <div class="row clearfix">
                    <div class="col-sm-4 form-control-label">
                        <label for="classname">Upload Document</label>
                    </div>
                    <div class="col-sm-8">
                        <div class="form-group">
                           {!! Form::file('practiceFile',null,['class' => 'form-control']) !!}
                           @if ($errors->has('practiceFile'))
                            <label id="minmaxlength-error" class="error" for="minmaxlength">
                                <strong>{{ $errors->first('practiceFile') }}</strong>
                            </label>
                            @endif
                            <span id="hwfileerror"></span>
                        </div>
                    </div>
                </div>
                <div class="row clearfix">
                    <div class="col-sm-4 form-control-label">
                        <label for="classname">Select Publish Date</label>
                    </div>
                    <div class="col-sm-5">
                        <div class="form-group">
                            {!! Form::text('publishDate',null,['class' => 'form-control datepicker']) !!}
                            @if ($errors->has('publishDate'))
                            <label id="minmaxlength-error" class="error" for="minmaxlength">
                                <strong>{{ $errors->first('publishDate') }}</strong>
                            </label>
                            @endif
                            <span id="pubdate"></span>
                        </div>
                    </div>
                    @if(isset($pset))
                    @else
<!--                    <div class="col-sm-2">
                        <button class="btn btn-sm btn-success" style="font-size: 12px;" name='schedule'>Schedule</button>
                    </div>-->
                    @endif
                </div>
                <div class="row clearfix">
                    <div class="col-sm-8 offset-sm-2">
                        @if(isset($pset))
                        {!! Form::submit('UPDATE',['class' => 'btn btn-raised btn-primary btn-round waves-effect']) !!}
                        @else
                        {!! Form::submit('SAVE NOW',['class' => 'btn btn-raised btn-primary btn-round waves-effect','id'=>'submit-btn']) !!}
                        @endif
                        {!! Form::close() !!} 
                    </div>
                </div>

            </div>
        </div>
    </div>
<!--</div>
<div class="row clearfix">-->
    <div class="col-sm-7">
        <div class="card">
            <div class="header">
                <h2><strong>List Of Practice Sheet</strong></h2>
            </div>
            <div class="body table-responsive">
                {!! Form::open(['method' => 'GET',  'action' => ['School\PractiseSetController@index'], 'class' => 'form-horizontal']) !!}
                <div class="row clearfix">
                    <div class="col-sm-3 form-control-label">
                        <label for="classname">From Date</label>
                    </div>
                    <div class="col-sm-5">
                        <div class="form-group">
                           {!! Form::text('fromDate',null,['class' => 'form-control datepicker']) !!}
                        </div>
                    </div>
                </div>
                <div class="row clearfix">
                    <div class="col-sm-3 form-control-label">
                        <label for="classname">To Date</label>
                    </div>
                    <div class="col-sm-5">
                        <div class="form-group">
                           {!! Form::text('toDate',null,['class' => 'form-control datepicker']) !!}
                        </div>
                    </div>
                     <div class="col-sm-2">
                        {!! Form::submit('Search',['class' => 'btn btn-raised btn-primary btn-round waves-effect']) !!}
                        {!! Form::close() !!} 
                    </div>
                </div>
                <table class="table table-bordered table-striped table-hover js-basic-example dataTable">
                    <thead>
                        <tr>
                            <th>S. No.</th>
                            <th>Date</th>
                            <th>Class</th>
                            <th>Section</th>
                            <th>EC No.</th>
                            <th>Subject</th>
                            <th>Message</th>
                            <th>Attached Document</th>
                            <th>Action</th>
                        </tr>
                    </thead>
                    <tbody>
                        <?php $i = 1; ?>
                        @foreach($psets as $value)
                        <tr>
                            <th scope="row">{{$i}}</th>
                            <td>{{$value->publishDate}}</td>
                            <td>{{$value->classM->className}}</td>
                            @if(isset($value->section))
                            <td>{{$value->section->sectionName}}</td>
                            @else <td></td>@endif
                            <td>{{$value->student->ecNo or 'All'}}</td>
                            <td>{{$value->subject}}</td>
                            <td style="word-wrap: break-word;">{{$value->message}}</td>
                            <td><a href="{{url('/school/practiceset/' . $value->idSet.'/viewdoc')}}" target="_blank">View</a></td>
                            <td>
                                <a href="{{ url('school/practiceset/' . $value->idSet . '/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="{{$value->idSet}}" data-type="confirm">DELETE</button>
                            </td>
                        </tr>
                        <?php $i++; ?>
                        @endforeach
                    </tbody>
                </table>
            </div>
        </div>
    </div>
</div>
@stop
@section('script')
<script>
$(document).ready(function() {
    $('select[name="idClass"]').on('change', function() {
        var classID = $(this).val();
        if(classID!='All') {
            $.ajax({
                url: "{{url('/school/class') }}"+'/' +classID + "/sections",
                type: "GET",
                dataType: "json",
                success:function(data) {
                    $('#idSection').empty();
                    $('#idSection').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-all" id="selectall"></div>');
                    $.each(data, function(key, value) {
                       $('#idSection').append('<div class="checkbox-inline" style="padding-left:10px;"><label style="margin-right:100px;">'+value+'</label><input type="checkbox" name="sections[]" value="'+key+'" class="sectionclass"></div>');
                        
                    });
                }
            });
        }else{
            $('select[name="idSection"]').empty();
        }
    });
    
});
$(document).on('click', '.select-all', function(){
    var checkAll = this.checked;
        if(checkAll === true){
            $('input[type=checkbox]').each(function () {
                this.checked = checkAll;
            });
            var sectionIds = [];
            $("input:checkbox[name='sections[]']:checked").each(function () {
                sectionIds.push($(this).val());
            });
            if (sectionIds.length > 0) {
                    $.ajax({
                        url: "{{url('/school/sec') }}"+'/' +sectionIds + "/students",
                        type: "GET",
                        dataType: "json",
                        success:function(data) {
                            $('#idStudent').empty();
                            $('#idStudent').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-allstd" id="selectallstd"></div>');
                            $.each(data, function(key, value) {
                               $('#idStudent').append('<div class="checkbox-inline" style="padding-left:10px;"><label style="margin-right:10px;">'+value+'</label><input type="checkbox" name="students[]" value="'+key+'" class="stdallselect"></div>');

                            });
                        }
                    });
                }
        }else{
            $('#idStudent').empty();
            $('input[type=checkbox]').each(function () {
                this.checked = checkAll;
            });
        }
        
    
});
$(document).on('click', '.sectionclass', function(){
    var sectionIds = [];
        $("input:checkbox[name='sections[]']:checked").each(function () {
            sectionIds.push($(this).val());
        });
        if (sectionIds.length > 0) {
                $.ajax({
                    url: "{{url('/school/sec') }}"+'/' +sectionIds + "/students",
                    type: "GET",
                    dataType: "json",
                    success:function(data) {
                        $('#idStudent').empty();
                        $('#idStudent').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-allstd" id="selectallstd"></div>');
                        $.each(data, function(key, value) {
                           $('#idStudent').append('<div class="checkbox-inline" style="padding-left:10px;"><label style="margin-right:10px;">'+value+'</label><input type="checkbox" name="students[]" value="'+key+'" class="stdallselect"></div>');

                        });
                    }
                });
            }else{
                $('#idStudent').empty();
            }
});
$(document).on('click', '.select-allstd', function(){
    var checkAllstd = this.checked;
        if(checkAllstd === true){
            $("input:checkbox[name='students[]']").each(function () {
               this.checked = checkAllstd;
           });
        }else{
            $('.stdallselect').each(function () {
                this.checked = checkAllstd;
            });
        }
});

// Delete Feehead
$(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 Practice Set!",
            type: "warning",
            showCancelButton: true,
            confirmButtonColor: "#DD6B55",
            confirmButtonText: "Yes, delete it!",
            closeOnConfirm: true
        },
        function() {
         //   console.log('here');
            $.ajax({
                type: "DELETE",
                url: "{{url('/school/practiceset/')}}" +"/"+id,
                data: {id:id}
                       
            })
            .done(function(data) {
                swal({
                    title: "Deleted", 
                    text: "Practice Set has been successfully deleted", 
                    type: "success"
                },function() {
                    location.reload();
                });
            })
            .error(function(data) {
              swal("Oops", "We couldn't connect to the server!", "error");
            });
            return false;
    });
});

// Saving form data
$('#homework_form').on('submit',function(e){
    $.ajaxSetup({
    header:$('meta[name="_token"]').attr('content')
});
 var formData =  new FormData($('#homework_form')[0]);
 $("#submit-btn").prop('disabled', true);
    $.ajax({
        type:"POST",
        url: "{{url('school/practiceset') }}",
        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 = "{{url('school/practiceset')}}";
            }
            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['idStudent']=== undefined){
                                    $( '#ecnoerror' ).empty();
                                }else{
                                   errorname = '<span class="help-block"><strong>'+errors['idStudent']+'</strong></span>';
                                   $( '#ecnoerror' ).html( errorname );
                                }
                                if(errors['subject']=== undefined){
                                    $( '#subjecterror' ).empty();
                                }else{
                                   errorname = '<span class="help-block"><strong>'+errors['subject']+'</strong></span>';
                                   $( '#subjecterror' ).html( errorname );
                                }
                                if(errors['message']=== undefined){
                                    $( '#homeworkerror' ).empty();
                                }else{
                                   errorname = '<span class="help-block"><strong>'+errors['message']+'</strong></span>';
                                   $( '#homeworkerror' ).html( errorname );
                                }
                                if(errors['practiceFile']=== undefined){
                                    $( '#hwfileerror' ).empty();
                                }else{
                                   errorname = '<span class="help-block"><strong>'+errors['practiceFile']+'</strong></span>';
                                   $( '#hwfileerror' ).html( errorname );
                                }
                                if(errors['publishDate']=== undefined){
                                    $( '#pubdate' ).empty();
                                }else{
                                   errorname = '<span class="help-block"><strong>'+errors['publishDate']+'</strong></span>';
                                   $( '#pubdate' ).html( errorname );
                                }
                             
                                
                    }
            }
    });
    return false;
});
</script>
@stop

Copyright © 2021 - 2025 IMMREX7