| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php include 'admin_header.php'; ?>
- <div class="content-wrapper">
- <section class="content-header">
- <h1>
- <?=lang::_('Dashboard')?>
- <small></small>
- </h1>
- <ol class="breadcrumb">
- <li><a href="/admin"><i class="fa fa-heartbeat"></i> <?=lang::_('Admin')?></a></li>
- <li class="active"><?=lang::_('Dashboard')?></li>
- </ol>
- </section>
-
- <section class="content">
- <div class="row">
- <?php foreach ($reports as $report) : ?>
- <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-xs-12">
- <div class="box box-info">
- <div class="box-header with-border">
- <h3 class="box-title"><?=$report['hotel']?></h3>
- </div>
- <div class="box-body">
- <p>Last month: <strong><?=formatize::currency($report['last_month'])?>,- HUF</strong></p>
- <p>Actual month: <strong><?=formatize::currency($report['actual_month'])?>,- HUF</strong></p>
- </div>
- </div>
- </div>
- <?php endforeach; ?>
- </div>
- </section>
- </div>
- <?php include 'admin_footer.php'; ?>
|