One Hat Cyber Team
Your IP :
18.218.189.170
Server IP :
104.21.16.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
app.gftag.com
/
storage
/
framework
/
views
/
Edit File:
892bf5c356d584d45a6e42cb90145bb3.php
<?php $__env->startSection('styles'); ?> <style> .edit, .delete { border: none !important; margin: 1em; } .edit { color: #136BAF; } .delete { color: red; } </style> <link rel="stylesheet" href="<?php echo e(asset('css/lib/datatables-net/datatables.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('css/separate/vendor/datatables-net.min.css')); ?>"> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="page-content"> <div class="container-fluid"> <section class="card"> <div class="row"> <div class="header"> <div class="col-xs-8"> <h3 class="p-l">All Shareholders</h3> </div> <div class="col-xs-4"> <a href="<?php echo e(route('create-share-holder')); ?>" class="btn btn-rounded float-right p-r">Add Shareholder</a> </div> </div> </div> </section> <?php if(session()->has('message')): ?> <div class="alert alert-info alert-fill alert-close alert-dismissible fade in"> <strong><?php echo e(session()->get('message')); ?></strong> </div> <?php endif; ?> <section class="card"> <div class="card-block" style="overflow-x: scroll"> <table id="example" class="display table table-striped table-bordered" cellspacing="0" width="100%"> <thead> <tr> <th>Name</th> <th>Fathers Name</th> <th>Gender</th> <th>Amount Collected</th> <th>Land Holdings</th> <th>Annual Income</th> <th>Folio Number</th> <th>Action</th> </tr> </thead> <tbody> <?php $__currentLoopData = $shareholders; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($item->name); ?></td> <td><?php echo e($item->fathers_name); ?></td> <td><?php echo e($item->gender); ?></td> <td><?php echo e($item->amount_collected); ?></td> <td><?php echo e($item->land_holdings); ?></td> <td><?php echo e($item->annual_income); ?></td> <td><?php echo e($item->folio_number); ?></td> <td> <a href="<?php echo e(route('edit-share-holder',[$item->id])); ?>" class="edit" title="Edit"> <i class="fa fa-pencil-square-o fa-lg" aria-hidden="true"></i> </a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </section> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <script src="<?php echo e(asset('js/lib/datatables-net/datatables.min.js')); ?>"></script> <script> $(function() { $('#example').DataTable(); }); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/forge/app.gftag.com/resources/views/shareholder/index.blade.php ENDPATH**/ ?>
Simpan