KUJUNTI.ID MINISH3LL
Path : /var/www/html/moneyexchange/storage/framework/views/
(S)h3ll Cr3at0r :
F!le Upl0ad :

B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H

Current File : /var/www/html/moneyexchange/storage/framework/views/46c7408513a8ec0cc07a3156caeb70d1981f99ab.php


<?php $__env->startSection('content'); ?>
<div class="page-wrapper">
  <div class="page-breadcrumb">
    <div class="row">
      <div class="col-12 d-flex no-block align-items-center">
        <h4 class="page-title"><?php echo e(__('message.money exchange list')); ?></h4>
        <div class="ms-auto text-end">
          <nav aria-label="breadcrumb">
            <ol class="breadcrumb">
              <li class="breadcrumb-item">
                <a href="<?php echo e(route('money-exchange-lists.create')); ?>" class="btn btn-primary btn-sm">
                  <i class="fa fa-plus"></i> 
                  <?php echo e(__('message.add new')); ?>

                </a>
              </li>
            </ol>
          </nav>
        </div>
      </div>
    </div>
  </div>
  <div class="container-fluid" style="padding-top: 0px;">
    <div class="row">
      <div class="col-12">        
        <div class="card">
          <div class="card-body">
            <div class="table-responsive">
              <table
                id="zero_config"
                class="table table-striped table-bordered">
                <thead>
                  <tr>
                    <th>#</th>
                    <th><?php echo e(__('message.from')); ?></th>
                    <th><?php echo e(__('message.to')); ?></th>
                    <th><?php echo e(__('message.calculation')); ?></th>
                    <th><?php echo e(__('message.current exchange rate')); ?></th>
                    <th><?php echo e(__('message.last updated rate')); ?></th>
                    <th><?php echo e(__('message.status')); ?></th>
                    <th><?php echo e(__('message.order')); ?></th>
                    <th><?php echo e(__('message.created by')); ?></th>
                    <th><?php echo e(__('message.action')); ?></th>
                  </tr>
                </thead>
                <tbody>
                    <?php $__currentLoopData = $moneyExchangeLists; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $moneyExchangeList): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                    <tr <?php if(!$moneyExchangeList->is_active): ?> class="disabled-row" <?php endif; ?>>
                        <td><?php echo e($index+1); ?></td>

                        <td><?php echo e($moneyExchangeList->exchangeFromCurrency->name??''); ?></td>
                        <td><?php echo e($moneyExchangeList->exchangeToCurrency->name??''); ?></td>
                        <td>
                          <?php echo e($moneyExchangeList->calculation); ?>

                        </td>
                        <td class="credit">

                          <?php echo e(number_format($moneyExchangeList->current_rate,$moneyExchangeList->exchangeToCurrency->decimal_precision??2)); ?>

                        </td>
                        <td>
                           <?php echo e(Carbon\Carbon::parse($moneyExchangeList->last_updated_rate)->format('d/m/Y H:i')); ?>

                        </td>
                        <td>
                          <?php echo e($moneyExchangeList->is_active?__('message.active'):__("message.inactive")); ?>

                        </td>
                        <td><?php echo e($moneyExchangeList->order); ?></td>
                        <td><?php echo e($moneyExchangeList->user->name??''); ?></td>
                        <td>
                          <a href="<?php echo e(route('money-exchange-lists.edit',$moneyExchangeList)); ?>" class="btn btn-primary btn-sm"><i class="fa fa-eye"></i></a>
                          <form method="POST" action="<?php echo e(route('money-exchange-lists.destroy', $moneyExchangeList)); ?>" style="display:inline">
                           <input name="_method" type="hidden" value="DELETE">
                           <?php echo e(csrf_field()); ?>

                            <button type="submit" class="btn btn-danger btn-sm" onclick="return confirm('<?php echo e(__('message.do you want to delete')); ?>?')">
                             <i class="fas fa-trash" style="color: #FFF;"></i>
                            </button>
                          </form>
                          <?php if($moneyExchangeList->is_active): ?>
                            <a href="<?php echo e(route('rate-create',$moneyExchangeList)); ?>" class="btn btn-primary btn-sm">
                              <i class="fas fa-dollar-sign"></i>
                              <?php echo e(__('message.update rate')); ?>

                            </a>
                          <?php endif; ?>
                        </td>
                    </tr>
                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                </tbody>
              </table>
              <div class="rows">
                <?php echo e($moneyExchangeLists->appends($_GET)->links()); ?>

                <?php if($moneyExchangeLists->hasPages()): ?>
                  <select name="perpage" style="display: inline;border:1px solid #CCC;" onchange="loadPerPage();">
                    <option value="25" <?php if(isset($perpage) & $perpage==25): ?> selected <?php endif; ?>>25</option>
                    <option value="50" <?php if(isset($perpage) & $perpage==50): ?> selected <?php endif; ?>>50</option>
                    <option value="100" <?php if(isset($perpage) & $perpage==100): ?> selected <?php endif; ?>>100</option>
                    <option value="150" <?php if(isset($perpage) & $perpage==150): ?> selected <?php endif; ?>>150</option>
                    <option value="200" <?php if(isset($perpage) & $perpage==200): ?> selected <?php endif; ?>>200</option>
                    <option value="250" <?php if(isset($perpage) & $perpage==250): ?> selected <?php endif; ?>>250</option>
                    <option value="300" <?php if(isset($perpage) & $perpage==300): ?> selected <?php endif; ?>>300</option>
                    <option value="350" <?php if(isset($perpage) & $perpage==350): ?> selected <?php endif; ?>>350</option>
                    <option value="400" <?php if(isset($perpage) & $perpage==400): ?> selected <?php endif; ?>>400</option>
                    <option value="1000" <?php if(isset($perpage) & $perpage==1000): ?> selected <?php endif; ?>>1000</option>
                    <option value="1500" <?php if(isset($perpage) & $perpage==1500): ?> selected <?php endif; ?>>1500</option>
                  </select>
                <?php endif; ?>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('meta'); ?>
  <title><?php echo e(__('message.money exchange list')); ?></title>
<?php $__env->stopSection(); ?>




<?php echo $__env->make('layouts.main', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/moneyexchange/resources/views/moneyExchangeList/moneyExchangeListList.blade.php ENDPATH**/ ?>

© KUJUNTI.ID