<?php $__env->startSection('title'); ?>
    Client Usage
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<img style="max-width: 30%;display: block; margin-top: -3rem; margin-left: auto; margin-right: auto;" src="/img/Prestige_Logo.jpg" />
<div style="width: 860px !important;border: solid #009ddc 7px;background-image: url(/img/da-background.jpg);" class="login">
			<div class="app-title">
				<h1>Client Usage</h1>
			</div>
    <a  href="/management-dashboard"><button style="margin-left:auto;margin-right:auto; display:block;padding-left:1rem;padding-bottom:0.063rem;"><i style="font-size: 1rem;" class="fa fa-arrow-circle-left" aria-hidden="true"></i>Back</button></a>
    
    <div class="row">
        <div class="large-12 columns">
            <table>
                <thead>
                    <tr>
                        <th width="18%"><i style="margin-left: 0px; font-size: 2rem;" class="fa fa-user" aria-hidden="true"></i>Company Name</th>
                        <th style="text-align: center;" width="5%"></i>View Transactions</th>
                    </tr>
                </thead>
                <tbody>
                    <?php foreach($users as $user): ?>
                        <tr>
                            <td><?php echo $user->name; ?></td>
                            <td class="text-center"><a href="transation-list/<?php echo $user->id; ?>"> <i style="font-size: 2rem;" class="fa fa-pencil-square-o" aria-hidden="true"></i> </a></td>
                        </tr>
                    <?php endforeach; ?>
                </tbody>
            </table>
            <div class="row">
                <div class="large-12 columns">
                    <div class="pagination"> <?php echo $users->links(); ?> </div>
                </div>
            </div>
        </div>
    </div>
    </div>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
    <script src="<?php echo asset('js/scripts.js'); ?>"></script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>