File: /var/www/html/orbidirectory.com/storage/framework/views/5a9dd32b320b0408d6396e9ddd0c7d45.php
<!-- Button trigger modal -->
<a href="<?php echo e(route('business.show',$row->id)); ?>" class="btn btn-sm btn-dark">
<i class="fa fa-eye"></i>
</a>
<a href="<?php echo e(route('business.edit',$row->id)); ?>" class="btn btn-sm btn-dark">
<i class="fa fa-pencil-alt"></i>
</a>
<button type="button" class="btn btn-dark btn-sm" data-toggle="modal" data-target="#BusinesRegisterDelete<?php echo e($row->id); ?>">
<i class="fa fa-trash-alt"></i>
</button>
<!-- Modal -->
<div class="modal fade" id="BusinesRegisterDelete<?php echo e($row->id); ?>" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel"><?php echo e($row->name); ?></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>This will delete this Busines Register permanently</p>
<p>Are you sure?</p>
</div>
<div class="modal-footer">
<form method="POST" action="<?php echo e(route('business.delete', $row->id)); ?>">
<!-- CSRF Token -->
<?php echo csrf_field(); ?>
<!-- Hidden input to simulate DELETE method -->
<input type="hidden" name="_method" value="DELETE">
<button type="button" class="btn btn-danger delete-business" data-id="<?php echo e($row->id); ?>">
Yes, Delete
</button>
</form>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div><?php /**PATH /var/www/html/orbidirectory.com/resources/views/admin/business/action.blade.php ENDPATH**/ ?>