<?php $__env->startSection('title'); ?>
    Manage Pricing
<?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>Manage Pricing</h1>
			</div>
    <a  href="/management-dashboard"><button style="    margin-left: auto;
                                                                                margin-right: auto;
                                                                                margin-top: 2rem;
                                                                                display: block;
                                                                                padding-bottom: 0.01rem;
                                                                                padding-left: 0rem;"><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="8%">Company Name</th>
                        <th width="8%">Generate Invoice</th>
                        <th style="text-align: center;" width="4%"></i>Set Pricing</th>
                    </tr>
                </thead>
                <tbody>
                    <?php foreach($users as $user): ?>
                        <tr>
                            <td><?php echo $user->name; ?></td>
                            <td><a href="generate-invoice/<?php echo $user->id; ?>"><i style="font-size:2rem;"  class="fa fa-file-text-o" aria-hidden="true"></i></a></td>
                            <td class="text-center"><a href="edit-pricing/<?php echo $user->id; ?>"> <i style="font-size:2rem;" class="lightGrey 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(); ?>