IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/storage/framework/views/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/storage/framework/views/d25c9e06e891a77609e69d9c2a33375c95c56587.php

<?php $__env->startSection('content'); ?>
<div class="row clearfix">
    <div class="col-lg-6 col-md-6 col-sm-6">
        <div class="card">
            <div class="header">
                <h2><strong><?php if(isset($rfid)): ?>Edit <?php else: ?>  Add <?php endif; ?></strong>RFID</h2>
            </div>
            <div class="body">
                <?php if(isset($rfid)): ?>
                <?php echo Form::model( $rfid, ['route' => ['bookrfids.update', $rfid->idLibraryRFID], 'method' => 'put','class'=>'form-horizontal'] ); ?>

                <?php else: ?>
                <?php echo Form::open(['url' => 'school/bookrfids','class'=>'form-horizontal','id'=>'form']); ?>

                <?php endif; ?>
                
                
                <div class="row clearfix">
                    <div class="col-sm-4 form-control-label required">
                            <label for="classname">Machine ID</label>
                        </div>
                        <div class="col-sm-6">
                            <div class="form-group">
                                <?php echo Form::text('rfidName',null,['class' => 'form-control','required'=>'required']); ?>

                                <?php if($errors->has('rfidName')): ?>
                                <label id="minmaxlength-error" class="error" for="minmaxlength">
                                    <strong><?php echo e($errors->first('rfidName')); ?></strong>
                                </label>
                                <?php endif; ?>
                            </div>
                        </div>
                </div>
                <div class="row clearfix">
                    <div class="col-sm-8 offset-sm-2">
                        <?php if(isset($rfid)): ?>
                        <?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']); ?>

                        <?php endif; ?>
                        <?php echo Form::close(); ?> 
                    </div>
                </div>
            </div>
        </div>
    </div
</div>
<div class="col-sm-6">
        <div class="card">
            <div class="header">
                <h2><strong>List Of  RFID </strong></h2>
            </div>
            <div class="body table-responsive">
                <table class="table table-bordered table-striped table-hover js-basic-example dataTable">
                    <thead>
                        <tr>
                            <th>S.NO.</th>
                            <th>Name</th>
                            <th>Action</th>
                        </tr>
                    </thead>
                    <tbody>
                        <?php $i = 1; ?>
                        <?php $__currentLoopData = $rfids; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $var): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                        <tr>
                            <td><?php echo e($i); ?></td>
                            <td><?php echo e($var->rfidName); ?></td>
                            <td>
                                <a href='<?php echo e(url('/school/bookrfids/'.$var->idLibraryRFID.'/edit')); ?>'  class="btn btn-raised btn-info waves-effect btn-round"><i class="fa fa-edit"></i>Edit</a>
                                <button class="btn btn-raised btn-danger waves-effect btn-round js-sweetalert" data-id="<?php echo e($var->idLibraryRFID); ?>" 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).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  RFID!",
            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/bookrfids/')); ?>" +"/"+id,
                data: {id:id}
                       
            })
            .done(function(data) {
                swal({
                    title: "Deleted", 
                    text: "RFID 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
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('schools.school_layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

Copyright © 2021 - 2025 IMMREX7