관리-도구
편집 파일: d830b9f9b32e64b8b1a70ccb12442c2d29b52d52.php
<?php $__env->startSection('content'); ?> <!-- ============================================================== --> <div class="page-wrapper"> <!-- ============================================================== --> <!-- Container fluid --> <!-- ============================================================== --> <div class="container-fluid"> <!-- ============================================================== --> <!-- Bread crumb and right sidebar toggle --> <!-- ============================================================== --> <div class="row page-titles"> <div class="col-md-5 align-self-center"> <h4 class="text-themecolor"> </h4> </div> <div class="col-md-7 align-self-center text-end"> <div class="d-flex justify-content-end align-items-center"> <ol class="breadcrumb justify-content-end"> <li class="breadcrumb-item"><a href="<?php echo e(url('/admin/dashboard')); ?>">Home</a></li> <li class="breadcrumb-item active">Subscribers</li> </ol> <!--<form action="<?php echo e(route('createBlog')); ?>"> <button type="submit" class="btn btn-info d-none d-lg-block m-l-15 text-white"><i class="fa fa-plus-circle"></i> Create New</button> </form>--> </div> </div> </div> <!-- ============================================================== --> <!-- End Bread crumb and right sidebar toggle --> <!-- ============================================================== --> <!-- ============================================================== --> <!-- Start Page Content --> <!-- ============================================================== --> <div class="row"> <!-- column --> <div class="col-12"> <div class="card"> <div class="card-body"> <h4 class="card-title"> Subscribers </h4> <?php if(Session::has('success')): ?> <div class="alert alert-success alert-dismissible fade show" role="alert"> <?php echo e(Session::get('success')); ?> <!--<button type="button" class="close" data-dismiss="alert" aria-label="Close">--> <!-- <span aria-hidden="true">×</span>--> <!-- </button>--> </div> <?php elseif(Session::has('error')): ?> <div class="alert alert-danger alert-dismissible fade show" role="alert"> <?php echo e(Session::get('error')); ?> <!--<button type="button" class="close" data-dismiss="alert" aria-label="Close">--> <!-- <span aria-hidden="true">×</span>--> <!--</button>--> </div> <?php endif; ?> <div class="table-responsive"> <table class="table"> <thead> <tr> <th>#</th> <th>Email</th> <!--<th>Content</th>--> <!--<th>Status</th>--> <!--<th>Edit</th>--> <!--<th>Delete</th>--> </tr> </thead> <tbody> <?php $__currentLoopData = $data; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $email): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($loop->iteration); ?></td> <td><?php echo e($email); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </tbody> </table> </div> </div> </div> </div> <!-- column --> </div> <!-- ============================================================== --> <!-- End PAge Content --> <!-- ============================================================== --> <!-- ============================================================== --> <!-- Right sidebar --> <!-- ============================================================== --> <!-- .right-sidebar --> <!-- ============================================================== --> <!-- End Right sidebar --> <!-- ============================================================== --> </div> <!-- ============================================================== --> <!-- End Container fluid --> <!-- ============================================================== --> </div> <!-- ============================================================== --> <!-- End Page wrapper --> <!-- ============================================================== --> <!-- ============================================================== --> <!-- footer --> <!-- ============================================================== --> <!-- End footer --> <!-- ============================================================== --> <!-- ============================================================== --> <!-- End Wrapper --> <!-- ============================================================== --> <!-- ============================================================== --> <!-- All Jquery --> <!-- ============================================================== --> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/customdevdevopdi/findjobs.customdev.devopdigital.com/resources/views/backend/newsletters/index.blade.php ENDPATH**/ ?>