<?php $__env->startSection('content'); ?>

    <div class="col-md-12 content-header" >

        <h1><i class="fa fa-download"></i> <?php echo e(trans('application.database_backups')); ?></h1>

    </div>
    <section class="content">

        <div class="row">

            <div class="col-md-3">

                <?php echo $__env->make('settings.partials._menu', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

            </div>

            <div class="col-md-9">

                <div class="box box-primary">

                    <div class="box-body">

                        <div class="form-group">
                            <a class="btn btn-primary btn-sm pull-right" href="<?php echo e(route('settings.backup.create')); ?>">Backup Database</a> <br/>
                        </div>

                        <div class="form-group">

                        <table class="table table-striped table-bordered datatable">

                            <thead>

                            <tr>

                                <th></th>

                                <th>Date</th>

                                <th>Details</th>

                                <th>Action</th>

                            </tr>

                            </thead>

                            <tbody>


                            </tbody>

                        </table>

                    </div>

                </div>

            </div>

        </div>

    </div>

    </section>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>