admin_dashboard.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php include 'admin_header.php'; ?>
  2. <div class="content-wrapper">
  3. <section class="content-header">
  4. <h1>
  5. <?=lang::_('Dashboard')?>
  6. <small></small>
  7. </h1>
  8. <ol class="breadcrumb">
  9. <li><a href="/admin"><i class="fa fa-heartbeat"></i> <?=lang::_('Admin')?></a></li>
  10. <li class="active"><?=lang::_('Dashboard')?></li>
  11. </ol>
  12. </section>
  13. <section class="content">
  14. <div class="row">
  15. <?php foreach ($reports as $report) : ?>
  16. <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-xs-12">
  17. <div class="box box-info">
  18. <div class="box-header with-border">
  19. <h3 class="box-title"><?=$report['hotel']?></h3>
  20. </div>
  21. <div class="box-body">
  22. <p>Last month: <strong><?=formatize::currency($report['last_month'])?>,- HUF</strong></p>
  23. <p>Actual month: <strong><?=formatize::currency($report['actual_month'])?>,- HUF</strong></p>
  24. </div>
  25. </div>
  26. </div>
  27. <?php endforeach; ?>
  28. </div>
  29. </section>
  30. </div>
  31. <?php include 'admin_footer.php'; ?>