/
home
/
sjslayjy
/
public_html
/
ccbfsoution
/
storage
/
framework
/
views
/
Upload File
HOME
<?php $__env->startSection('title', 'Land Management'); ?> <?php $__env->startSection('content'); ?> <style> .btn-add { background-color: #6b8e23; color: white; padding: 8px 12px; border-radius: 6px; font-size: 14px; border: none; } .modal-content { border-radius: 12px; padding: 20px; } .form-control, .form-select { border-radius: 8px; padding: 10px; } </style> <div style="color: #333;"><strong>Land Managemen</strong></div> <div class="d-flex justify-content-between align-items-center mt-4"> <button class="btn-add" data-bs-toggle="modal" data-bs-target="#addLandModal">Add Land</button> <div class="input-group shadow-sm rounded-pill w-25"> <input type="text" class="form-control border-0 rounded-start-pill" placeholder="Search..."> <span class="input-group-text bg-white border-0 rounded-end-pill"> <i class="fas fa-search text-secondary"></i> </span> </div> </div> <div class="table-responsive mt-3"> <table class="table table-bordered text-center"> <thead> <tr> <th>Sr.No.</th> <th>Plot No.</th> <th>Block Name</th> <th>Supervisor Name</th> <th>Area (Ha)</th> <th>Soil Type</th> <th>Previous Crop</th> <th>Current Crop</th> <th>Action</th> </tr> </thead> <tbody> <?php for($i = 1; $i <= 6; $i++): ?> <tr> <td><?php echo e($i); ?></td> <td>10<?php echo e($i); ?></td> <td>Block <?php echo e(chr(64+$i)); ?></td> <td>Supervisor <?php echo e($i); ?></td> <td>5<?php echo e($i); ?> Ha</td> <td>Loamy</td> <td>Wheat</td> <td>Maize</td> <td> <button class="btn btn-sm btn-warning">Edit</button> <button class="btn btn-sm btn-danger">Delete</button> </td> </tr> <?php endfor; ?> </tbody> </table> </div> </div> <!-- Modal --> <div class="modal fade" id="addLandModal" tabindex="-1" aria-labelledby="addLandModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Add Land</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <form> <div class="row"> <div class="col-md-6 mb-3"> <label>Plot No.</label> <input type="text" class="form-control" placeholder="Plot No."> </div> <div class="col-md-6 mb-3"> <label>Block</label> <select class="form-select"> <option>Select Block</option> </select> </div> <div class="col-md-6 mb-3"> <label>Supervisor Name</label> <input type="text" class="form-control" placeholder="Supervisor Name"> </div> <div class="col-md-6 mb-3"> <label>Area (Ha)</label> <input type="text" class="form-control" placeholder="Area (Ha)"> </div> <div class="col-md-6 mb-3"> <label>Soil Type</label> <select class="form-select"> <option>Select Soil</option> </select> </div> <div class="col-md-6 mb-3"> <label>Previous Crop</label> <input type="text" class="form-control" placeholder="Previous Crop"> </div> <div class="col-md-6 mb-3"> <label>Current Crop</label> <input type="text" class="form-control" placeholder="Current Crop"> </div> </div> <button type="submit" class="btn btn-success w-100">Submit</button> </form> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH D:\ccbf\CCBF (2)\CCBF\resources\views/admin/land.blade.php ENDPATH**/ ?>