PATH:
home
/
centosnipponia
/
public_html
/
appnip-old
/
storage
/
framework
/
views
<?php $__env->startSection('title', 'Nipponia Applications'); ?> <style> .boxsizingBorder { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } </style> <?php $__env->startSection('content_header'); ?> <?php $heads_prices = [ 'Model', 'Country', 'Maker', 'Date of track', 'Price info type', 'Packing', 'Exact Offer Price', 'Calculated Price', ['label' => 'Actions', 'no-export' => true], ]; $config = [ 'order' => [[1, 'asc']], 'columns' => [null, null,null, null, null, null,null,null, ['orderable' => false]], ]; $config['paging'] = false; $config["lengthMenu"] = [ 20, 50, 100, 500]; ?> <!-- create new product modal --> <script> function createnewprice() { $("#createnewprice").modal(); } </script> <!-- create new product modal --> <div class="container-fluid"> <div class="row"> <div class="col-md-4 mb-3"> <h1>Prices</h1> </div> </div> <div class="row"> <div class="col-md-4 mb-3"> <?php if (isset($component)) { $__componentOriginale79ddb0df6378beefa1143d3ec5f549fbb0da806 = $component; } ?> <?php $component = $__env->getContainer()->make(JeroenNoten\LaravelAdminLte\View\Components\Form\Button::class, ['label' => 'List a new price','theme' => 'primary']); ?> <?php $component->withName('adminlte-button'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?> <?php $component->withAttributes(['onclick' => 'createnewprice()']); ?> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__componentOriginale79ddb0df6378beefa1143d3ec5f549fbb0da806)): ?> <?php $component = $__componentOriginale79ddb0df6378beefa1143d3ec5f549fbb0da806; ?> <?php unset($__componentOriginale79ddb0df6378beefa1143d3ec5f549fbb0da806); ?> <?php endif; ?> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="container-fluid"> <div class="row" > <?php if (isset($component)) { $__componentOriginal07fd598d67a9f344ba4b0a77ed63c2052b910f24 = $component; } ?> <?php $component = $__env->getContainer()->make(JeroenNoten\LaravelAdminLte\View\Components\Tool\Datatable::class, ['id' => 'table_prices','heads' => $heads_prices,'config' => $config,'striped' => true,'hoverable' => true,'withButtons' => true]); ?> <?php $component->withName('adminlte-datatable'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?> <?php $component->withAttributes([]); ?> <?php $__currentLoopData = $price_table; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $price): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($price->model); ?></td> <td><?php echo e($price->country); ?></td> <td><?php echo e($price->maker); ?></td> <td><?php echo e($price->price_capture_date); ?></td> <td><?php echo e($price->offer_type); ?> <?php echo e($price->order_name); ?></td> <td><?php echo e($price->packing); ?> - <?php echo e($price->packingqty); ?></td> <td align="right"> <?php if( $price->price_us!=0) { $timi2=$price->price_us; echo number_format($timi2,2).' $ with ex. rate: '.number_format($price->us_yuan_at_date,2); } elseif( $price->price_yuan!=0) { $timi2=$price->price_yuan; echo number_format($timi2,2).' ¥ with ex. rate: '.number_format($price->us_yuan_at_date,2); } ?> </td> <td align="right"> <?php if((is_null($price->price_us) or $price->price_us===0.0) and (!is_null($price->us_yuan_at_date) and $price->us_yuan_at_date!=0)) //einai yuan { $timi=$price->price_yuan/$price->us_yuan_at_date; echo number_format($timi,2)." $"; } elseif($price->price_us!=0 and (!is_null($price->us_yuan_at_date) and $price->us_yuan_at_date!=0)) // einai dolario { $timi=$price->price_us*$price->us_yuan_at_date/$rate_usd_cny; echo number_format($timi,2)." $"; } ?> </td> <td> <!-- <a id="<?php echo e($price->id); ?>" href=<?php echo url("/price_edit_form?price={$price->id}"); ?>><button class="btn btn-xs btn-default text-primary mx-1 shadow" onclick="getMessage()" title="Edit"><i class="fa fa-lg fa-fw fa-pen"></i></button></a> --> <button class="btn btn-xs btn-default text-primary mx-1 shadow" data-toggle="modal" data-target="#priceeditform" title="Edit" onclick="editprice(<?php echo e($price->id); ?>)" title="Details"><i class="fa fa-lg fa-fw fa-eye"></i></button> <?php if($price->path_to_attachments!=""): ?> <a id="<?php echo e($price->id); ?>" target="_blank" href=<?php echo url("{$price->path_to_attachments}"); ?>><button class="btn btn-xs btn-default text-teal mx-1 shadow" title="Show Document"><i style ="color:red;" class="fa fa-lg fa-fw fa-file-pdf"></i></button></a> <?php else: ?> <button class="btn btn-xs btn-default text-teal mx-1 shadow" title="Show Document"><i style ="color:grey;" class="fa fa-lg fa-fw fa-file-pdf"></i></button> <?php endif; ?> <a onclick="confirmdelete()" id="trash" href=<?php echo url("/price_delete_form?priceid={$price->id}"); ?>><button class="btn btn-xs btn-default text-primary mx-1 shadow" title="Trash"><i class="fa fa-lg fa-fw fa-trash"></i></button></a> </td></tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__componentOriginal07fd598d67a9f344ba4b0a77ed63c2052b910f24)): ?> <?php $component = $__componentOriginal07fd598d67a9f344ba4b0a77ed63c2052b910f24; ?> <?php unset($__componentOriginal07fd598d67a9f344ba4b0a77ed63c2052b910f24); ?> <?php endif; ?> </div> </div> <?php echo $__env->make('appprices.offcanvas.create_new_price', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php echo $__env->make('appprices.offcanvas.price_edit', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('css'); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('js'); ?> <script src="<?php echo e(asset('js/va/createnewpricemodal.js')); ?>"></script> <script src="<?php echo e(asset('js/va/subvalidations.js')); ?>"></script> <script src="<?php echo e(asset('js/va/fillshowmodal.js')); ?>"></script> <?php $__env->stopSection(); ?> <?php echo $__env->make('adminlte::page', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/centosnipponia/public_html/appnip/resources/views/appprices/price_tracking.blade.php ENDPATH**/ ?>
[+]
..
[-] .gitignore
[edit]
[-] 5c92a23bf860c15d9fb367a31584f3f7c3ab017c.php
[edit]
[-] e00a03e3f8a945450fb66701580076833a632437.php
[edit]
[-] 112fc42dc2d6f596775cb43be7bef6148b87dc2c.php
[edit]
[-] e7704e609814783647202b4a62221078413fc21d.php
[edit]
[-] 569cb9f74c9523a92878e2d56ad16e3c1cfd44a0.php
[edit]
[-] 8bcf5d283007776c9ef759217ce61714e17e209d.php
[edit]
[-] 644566ded8c6aafd0d7ca1fb42e09bc8ef01db2e.php
[edit]
[-] 4421640b3da9f31e429216ae9641566feaaeb024.php
[edit]
[-] 6b16b15cf60cd7455ef069e939e2032c2ac73bf3.php
[edit]
[-] 8625e5b75ab93b13a77b7202a2f6dec5c1feb965.php
[edit]
[-] 14e0cf519dc7ccbbd7ba256680c17be0fcf6d4ca.php
[edit]
[-] ce232a2367ffc1ea63decf3f4c37912a96c24b7a.php
[edit]
[-] d654edd77785173ea999e9d656ab4229ad24d821.php
[edit]
[-] e0758a307b00c0ba910ce98eed2a75c1346cc2e1.php
[edit]
[-] 83efce8a480df47bbc0de8cb1b01f1cfaf2c193a.php
[edit]
[-] 0b6a6853cca62f0b2a671d33f024caf203789337.php
[edit]
[-] f16684dfce90ef78c8a07a079c244411ea163944.php
[edit]
[-] 08dd07eaaeb34ad8c536c6b68178dfbecb33d6bd.php
[edit]
[-] abfdc2686a84f2c4f728365ca7df4a3297ecd897.php
[edit]
[-] 6813e263930e1c9fdb5400cd26f207ae45b1f7d7.php
[edit]
[-] 6d16d631d5eec02f3f2b998678aa3851b206455b.php
[edit]
[-] 10c42eaa8cd04e9cbffa214c362565706e787895.php
[edit]
[-] a0ced9bf48c629aa5dd3b856c3ac4d9a0937ebfa.php
[edit]
[-] 7ea898e9c94e61be73b20bad8985f70103bffb9e.php
[edit]
[-] b06287b8551ce0c047042613027d11885550d1d1.php
[edit]
[-] fc909abf89f856ededc2cec7aa99359a16337db7.php
[edit]
[-] 2b10b9f4a131d04d10f73b4cd3ef75fa38572337.php
[edit]
[-] 03918eabd894d6143095eb63d95f3c4a1cd0040b.php
[edit]
[-] 3593a010bc64f50011da7c0cf9ea6968f1d70447.php
[edit]
[-] 69716fdcd9695628f44924d7bdf7d2d30dd08841.php
[edit]
[-] c0b1ff4863db28954a3b315256807c3814586f2a.php
[edit]
[-] 30489fee4a07bfa06926222c827df503bab28000.php
[edit]
[-] 981a7e4ab00ed174fcc01d61abab19af5fb998af.php
[edit]
[-] 4504f71ff2ee5f56daed36a4394a691f3871438d.php
[edit]
[-] a310b909296b0003e7da5cb9c82cbbbda10c9760.php
[edit]
[-] e59b155709343ed5e4b21bc3ab7b8c29dccd19b4.php
[edit]
[-] 9081bfd4d30ca814f5e49b1c5054fb3f79cab767.php
[edit]
[-] d598e3edd82f47f04cca6645de4f3587d431199f.php
[edit]
[-] 09034ebad97bec99754a2fa260f8a0b0b4fe45f0.php
[edit]
[-] 9913e3ecb3959c37f26933e1e70ec655a417b62b.php
[edit]
[-] c8e0a0b6ce1ba2789168dd092e461891102c5312.php
[edit]
[-] 29b0cb46ad2ad9d7768e152a02c52a0d99f256e1.php
[edit]
[-] 30a5104f627d27116ca2592a4ca871b92f840172.php
[edit]
[-] 9c3436a1e2d7757a6a4e91a8a65cf095094afa25.php
[edit]
[-] 4efed1a33f059243d64ee551b8cc99ea46228a86.php
[edit]
[-] 34b6864a475ebe59dd8353444d0ed657e47bf1f3.php
[edit]
[-] f3cb6497bab6233dd91d2e83bc8fff545527e207.php
[edit]
[-] ecb9cebb50bfd83ecec5873667e8dfa4011996dc.php
[edit]
[-] 3e5974232d0b9bc5abf96bbd65fd4a94a22058da.php
[edit]
[-] 7fdae48065161c0a49d67ab8d18e1238ae68280b.php
[edit]
[-] 77c47041bf645f48cf3ef415b8f4211941684811.php
[edit]
[-] 9c9e36a2a9d9abf6925904da7e045b74b620771f.php
[edit]
[-] 099e8199d2e9e85592cc7e1299ff1bb6a00ec562.php
[edit]
[-] d21d7c5ec52d44678432e05a97f6b0a303be9191.php
[edit]
[-] 52bab5f205fb8c0098229984f37f6caacd9aaaf8.php
[edit]
[-] 6c3fea6b39c5f9e6cfc38c855da6f73e44497d64.php
[edit]
[-] b210896a1a8cea98dedee8a3984d0f06e504424a.php
[edit]
[-] beace18c5d8ddcd0c8cac7b81cecee850beac213.php
[edit]
[-] 1c02b7f284292027a536ca6cbc27f45c0e323042.php
[edit]
[-] 7eca6529370d5c697a8b5b16ef8c9d34110687f7.php
[edit]
[-] 5f7be3dd5c69f04114461bee5c71663ebf167b35.php
[edit]
[-] 4e2f34488982a1f51f67664cc937be2c79abcf5b.php
[edit]
[-] 0545d5e053b1b592f4693020b0f53cfc80365f77.php
[edit]
[-] c5ef61a86cf702da9ceafa0af9eb0dda36ffb6f6.php
[edit]
[-] 8659a9c549ff0e7819acb0533e61ba4b95e29afc.php
[edit]
[-] a9a33874cd720df133d4b8fb2b277a6acd67edef.php
[edit]
[-] 8d253e71e6a0d59daa35cca75785097cfbb91f7b.php
[edit]
[-] 8ef3c58095d052f9a5c6f578f019743de2478588.php
[edit]
[-] 1c47e0d14680ecf1e51023619116f9f3ce83f4ef.php
[edit]
[-] 5957781fbdd6f146db629b573aa5629b44f90aab.php
[edit]
[-] 72720713db7065a1000f4acddb7f2eb3ae81da38.php
[edit]
[-] 937fc441f8ecce3ac674b797ce954b86c7db2d9a.php
[edit]
[-] 7ce4a69e32786d45165b563d664e303e2a8474f9.php
[edit]
[-] ee6a7fc99b4e1aee8f370ae770aa597032d8f899.php
[edit]
[-] 9ed929f92df85aaf2a44ae9540fcc6291bf65ce2.php
[edit]
[-] d9756f43f9ba694d37ced31d86daf159a07b67ee.php
[edit]
[-] 758fb5f2250f69760e69aa88bc8feb94fe4bdf54.php
[edit]
[-] 5e8d64d2a6b5d1f288a82df3f946c3ded40e3621.php
[edit]
[-] a6edbfdf8a54f8554f354b10b68cbf119ce67935.php
[edit]
[-] c8b4d95ec8058a6cdd8a1386bc4c746889c95abb.php
[edit]
[-] fae0a890a2fb49d1f518bc7a0a2a129acb39c3de.php
[edit]
[-] .htaccess.disabled
[edit]