⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.91
Server IP:
157.245.101.34
Server:
Linux skvinfotech-website 5.4.0-131-generic #147-Ubuntu SMP Fri Oct 14 17:07:22 UTC 2022 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
storage
/
framework
/
views
/
View File Name :
39a4e2b9b9e0232df35d21fc17f181c1113dbff8.php
<?php $__env->startSection('css_before'); ?> <!-- Page JS Plugins CSS --> <link rel="stylesheet" href="<?php echo e(asset('js/plugins/datatables/dataTables.bootstrap4.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('js/plugins/datatables/buttons-bs4/buttons.bootstrap4.min.css')); ?>"> <?php $__env->stopSection(); ?> <?php $__env->startSection('js_after'); ?> <!-- Page JS Plugins --> <script src="<?php echo e(asset('js/plugins/datatables/jquery.dataTables.min.js')); ?>"></script> <script src="<?php echo e(asset('js/plugins/datatables/dataTables.bootstrap4.min.js')); ?>"></script> <script src="<?php echo e(asset('js/plugins/datatables/buttons/dataTables.buttons.min.js')); ?>"></script> <script src="<?php echo e(asset('js/plugins/datatables/buttons/buttons.print.min.js')); ?>"></script> <script src="<?php echo e(asset('js/plugins/datatables/buttons/buttons.html5.min.js')); ?>"></script> <script src="<?php echo e(asset('js/plugins/datatables/buttons/buttons.flash.min.js')); ?>"></script> <script src="<?php echo e(asset('js/plugins/datatables/buttons/buttons.colVis.min.js')); ?>"></script> <!-- Page JS Code --> <script src="<?php echo e(asset('js/pages/tables_datatables.js')); ?>"></script> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <!-- Hero --> <div class="bg-body-light"> <div class="content content-full"> <div class="d-flex flex-column flex-sm-row justify-content-sm-between align-items-sm-center"> <h1 class="flex-sm-fill h3 my-2">Success List</h1> <nav class="flex-sm-00-auto ml-sm-3" aria-label="breadcrumb"> <ol class="breadcrumb breadcrumb-alt"> <li class="breadcrumb-item"> <a class="link-fx" href="<?php echo e(route('dashboard')); ?>">Dashboard</a> </li> <li class="breadcrumb-item" aria-current="page">Success Orders</li> </ol> </nav> </div> </div> </div> <div class="content"> <!-- Dynamic Table Full --> <div class="block block-rounded"> <div class="p-3"> <div class="row"> <div class="col-sm-12 col-md-12 text-right"> </div> </div> </div> <div class="block-content block-content-full"> <!-- DataTables init on table by adding .js-dataTable-full class, functionality is initialized in js/pages/be_tables_datatables.min.js which was auto compiled from _js/pages/be_tables_datatables.js --> <table class="table table-bordered table-striped table-vcenter js-dataTable-full"> <thead> <tr> <th style="width: 5%;" class="text-center" style="width: 80px;">S.No</th> <th style="width: 15%;">Order ID</th> <th style="width: 20%;">User</th> <th style="width: 15%;">Type</th> <th style="width: 15%;">Date</th> <th style="width: 20%;">Status</th> <th style="width: 20%;">Action</th> </tr> </thead> <tbody> <?php $__currentLoopData = $orders; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $order): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($loop->index+1); ?></td> <td><?php echo e(strtoupper($order->ordername_id)); ?></td> <td><?php echo e(strtoupper($order->user->name)); ?></td> <td><?php echo e($order->order_type); ?></td> <td><?php echo e(date('d-m-Y', strtotime($order->created_at))); ?></td> <td> <?php if($order->request_status == 2): ?> <p> Success </p> <?php else: ?> <p> Disposed </p> <?php endif; ?> </td> <td> <a href="<?php echo e(route('orders.detail',[$order->id])); ?>"> <button type="button" class="btn btn-primary btn-sm" data-toggle="click-ripple"> <i class="far fa-eye"></i> </button> </a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> <!-- END Dynamic Table Full --> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('script'); ?> <script> function submitForm(btn) { // disable the button btn.disabled = true; // submit the form btn.form.submit(); } </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('backend.layouts.backend', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/resources/views/backend/orders/successorders_list.blade.php ENDPATH**/ ?>