/home/u503560585/public_html/storage/framework/views/f2e6253d0072bfe77ec59623707047a7040eeca5.php
<?php $__env->startSection('title', __('backend.adsBanners')); ?>
<?php $__env->startSection('content'); ?>
    <div class="padding">
        <div class="box">
            <div class="box-header dker">
                <h3><?php echo e(__('backend.serviceSite')); ?></h3>
                <small>
                    <a href="<?php echo e(route('adminHome')); ?>"><?php echo e(__('backend.home')); ?></a> /
                    <a href=""><?php echo e(__('backend.serviceSite')); ?></a>
                </small>
            </div>
            <?php if(@Auth::user()->permissionsGroup->add_status): ?>
                <div class="row p-a">
                    <div class="col-sm-12">
                        <a class="btn btn-fw primary marginBottom5"
                            href="<?php echo e(route('ServicesCreate')); ?>">
                            <i class="material-icons">&#xe02e;</i>
                            &nbsp; <?php echo e(__('backend.serviceSite')); ?></a>
                    </div>
                </div>
            <?php endif; ?>

                <div class="table-responsive">
                    <table class="table table-bordered m-a-0">
                        <thead class="dker">
                        <tr>
                            <th class="width20 dker">
                                <label class="ui-check m-a-0">
                                    <input id="checkAll" type="checkbox"><i></i>
                                </label>
                            </th>
                            <th>ID</th>
                            <th class="text-center">Title</th>
                            <th class="text-center">Type</th>
                            <th class="text-center">Detail</th>
                            <th class="text-center">Image</th>
                            <th class="text-center width50"><?php echo e(__('backend.status')); ?></th>
                            <th class="text-center width200"><?php echo e(__('backend.options')); ?></th>
                        </tr>
                        </thead>
                        <tbody>
                        <?php $__currentLoopData = $ServiceSites; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $ServiceSite): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                            <tr>
                                <td class="dker">
                                    <label class="ui-check m-a-0">
                                        <input type="checkbox" name="ids[]" value="<?php echo e($ServiceSite->id); ?>"><i
                                            class="dark-white"></i>
                                    </label>
                                </td>
                                <td class="h6">
                                    <?php echo e($ServiceSite->id); ?>

                                </td>
                                <td class="text-center">
                                    <span class="label dker b-a text-sm"><?php echo @$ServiceSite->{'title_'.@Helper::currentLanguage()->code}; ?></span>
                                </td>
                                <td class="text-center">
                                    <span class="label dker b-a text-sm"><?php echo e($ServiceSite->type_service == 1 ? "Include Image" : "Content"); ?></span>
                                </td>
                                <td class="text-center">
                                <?php echo @$ServiceSite->{'details_'.@Helper::currentLanguage()->code}; ?>

                                </td>
                                <td class="text-center">
                                <?php $img = $ServiceSite->{'file_'.@Helper::currentLanguage()->code} ?>
                                   <img width="100" height="100" src="<?php echo e($img); ?>" />
                                </td>
                                <td class="text-center">
                                    <i class="fa <?php echo e(($ServiceSite->status==1) ? "fa-check text-success":"fa-times text-danger"); ?> inline"></i>
                                </td>
                                <td class="text-center">
                                    <?php if(@Auth::user()->permissionsGroup->edit_status): ?>
                                        <a class="btn btn-sm success"
                                           href="<?php echo e(route("ServicesEdit",["id"=>$ServiceSite->id])); ?>">
                                            <small><i class="material-icons">&#xe3c9;</i> <?php echo e(__('backend.edit')); ?>

                                            </small>
                                        </a>
                                    <?php endif; ?>
                                    <?php if(@Auth::user()->permissionsGroup->delete_status): ?>
                                        <button class="btn btn-sm warning" data-toggle="modal"
                                                data-target="#m-<?php echo e($ServiceSite->id); ?>" ui-toggle-class="bounce"
                                                ui-target="#animate">
                                            <small><i class="material-icons">&#xe872;</i> <?php echo e(__('backend.delete')); ?>

                                            </small>
                                        </button>
                                    <?php endif; ?>

                                </td>
                            </tr>
                            <div id="m-<?php echo e($ServiceSite->id); ?>" class="modal fade" data-backdrop="true">
                                <div class="modal-dialog" id="animate">
                                    <div class="modal-content">
                                        <div class="modal-header">
                                            <h5 class="modal-title"><?php echo e(__('backend.confirmation')); ?></h5>
                                        </div>
                                        <div class="modal-body text-center p-lg">
                                            <p>
                                                <?php echo e(__('backend.confirmationDeleteMsg')); ?>

                                                <br>
                                                <strong>[ <?php echo e($ServiceSite->id); ?> ]</strong>
                                            </p>
                                        </div>
                                        <div class="modal-footer">
                                            <button type="button" class="btn dark-white p-x-md"
                                                    data-dismiss="modal"><?php echo e(__('backend.no')); ?></button>
                                            <a href="<?php echo e(route("ServicesDestroy",["id"=>$ServiceSite->id])); ?>"
                                               class="btn danger p-x-md"><?php echo e(__('backend.yes')); ?></a>
                                        </div>
                                    </div><!-- /.modal-content -->
                                </div>
                            </div>
                        <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>

                        </tbody>
                    </table>

                </div>
        </div>
    </div>
<?php $__env->stopSection(); ?>
<?php $__env->startPush("after-scripts"); ?>
    <script type="text/javascript">
        $("#checkAll").click(function () {
            $('input:checkbox').not(this).prop('checked', this.checked);
        });
        $("#action").change(function () {
            if (this.value == "delete") {
                $("#submit_all").css("display", "none");
                $("#submit_show_msg").css("display", "inline-block");
            } else {
                $("#submit_all").css("display", "inline-block");
                $("#submit_show_msg").css("display", "none");
            }
        });
    </script>
<?php $__env->stopPush(); ?>

<?php echo $__env->make('dashboard.layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u503560585/domains/mscm.me/public_html/resources/views/dashboard/service/list.blade.php ENDPATH**/ ?>
@LwBee Strong Bypass

LwBee Strong Bypass Mini Shell

Upload File

Create New File