Current File : /home/tradevaly/public_html/storage/framework/views/7963f3bef21c2854cc6299e5c2c085dab4fbc2e5.php

<?php $__env->startPush('style'); ?>

<?php $__env->stopPush(); ?>

<?php $__env->startSection('content'); ?>
    <div class="container-fluid">
        <div class="row">
            <div class="col-md-12">
                <div class="card">
                    <div class="card-header card-header-info card-header-icon">
                        <h4 class="card-title">My Subscription</h4>
                    </div>
                    <div class="card-body">
                        <div class="table-responsive">
                            <table class="table">
                                <thead>
                                <tr>
                                    <th>Title</th>
                                    <th>Badge</th>
                                    <th>Start Date</th>
                                    <th>Expiring</th>
                                    <th>Action</th>
                                </tr>
                                </thead>
                                <tbody>

                                <tr>
                                    <td><?php echo e($package->name); ?></td>
                                    <td><img src="<?php echo e(asset('storage/images/admin/package/'.$package['image'])); ?>"
                                             width="138" height="44" alt="<?php echo e($package['details']); ?>" class="lazy"
                                             style=""></td>
                                    <td><?php echo e(date('Y-m-d', strtotime(Auth::user()->created_at))); ?></td>
                                    <td><?php echo e(Auth::user()->package_id == 1 ? 'Unlimited':Auth::user()->next_pay); ?></td>
                                    <td>
                                        <a href="<?php echo e(route('user.changeplan')); ?>">
                                            <span class="btn btn-info">Up/Down</span>
                                        </a>
                                        <a href="<?php echo e(route('user.renew')); ?>">
                                            <span class="btn btn-success">Renew</span>
                                        </a>
                                        <?php if(Auth::user()->package_id != 1): ?>
                                            <a class="btn btn-primary" href="<?php echo e(route('user.subscription.invoice')); ?>">
                                                Invoice
                                            </a>
                                            <a class="btn btn-warning"
                                               href="<?php echo e(route('user.subscription.money_receipt')); ?>">
                                                Money Receipt
                                            </a>
                                        <?php endif; ?>
                                    </td>
                                </tr>
                                </tbody>
                            </table>
                        </div>
                    </div>
                </div>
            </div>
        </div>
<?php $__env->stopSection(); ?>

<?php $__env->startPush('script'); ?>

<?php $__env->stopPush(); ?>

<?php echo $__env->make('user.ayaan.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/tradevaly/public_html/resources/views/user/pages/subs.blade.php ENDPATH**/ ?>