HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/8f26005de6a0a8a8ec64242ca989318f
 <?php $__env->startSection('body'); ?> <a href="/kms" class="back-button">&loarr;</a> <section id="mobile"> <h1>Hallo <?php echo Auth::user()->get()->first_name; ?></h1> <h2>Verkoophoeveelheid</h2> <div class="revenue"> <?php echo $__env->make('kms::dashboard.panels.sales',['shop_name' => 'Totaal'], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> </div> <?php foreach($shop_sales as $shopId => $sales): ?> <div class="revenue"> <?php echo $__env->make('kms::dashboard.panels.sales',['shop_name'=>$shops[$shopId]->name, 'shop_sales'=> $sales], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> </div> <?php endforeach; ?> <h2>Orders</h2> <?php foreach($orderGroup as $type => $numbers): ?> <div class="order_count"> <div class="entity-attribute entity-attribute-title"> <?php if(isset($shops[$type])): ?> <?php echo $shops[$type]->name; ?> <?php else: ?> Totaal <?php endif; ?> </div> <div class="numbers"> <div class="open small"> <?php /*Open*/ ?> <span class="type">Openstaand</span> <span class="number"> <?php echo $numbers['openstaand']; ?> </span> </div> <div class="payed small"> <?php /*payed*/ ?> <span class="type">Betaald</span> <span class="number"> <?php echo $numbers['betaald']; ?> </span> </div> <div class="treatment small"> <?php /*in treatment*/ ?> <span class="type">In behandeling</span> <span class="number"> <?php echo $numbers['inTreatment']; ?> </span> </div> <div class="complete small"> <?php /*complete*/ ?> <span class="type">Afgewerkt</span> <span class="number"> <?php echo $numbers['voltooid']; ?> </span> </div> <div class="total big"> <?php /*total*/ ?> <span class="type">Totaal</span> <span class="number"> <?php echo $numbers['totaal']; ?> </span> </div> </div> </div> <?php endforeach; ?> </section> <?php $__env->stopSection(); ?>
<?php echo $__env->make('kms::layouts.base', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>