Current File : /home/getxxhzo/app.genicards.com/storage/framework/views/304e356f425dbd6c205cfa9c1c5c4bf7.php |
<div class="d-flex align-items-center gap-2 ms-auto">
<div>
<label class="ms-auto" for="product_order_send_mail_customer"><?php echo e(__('messages.setting.send_email_to_customer')); ?></label>
<label class="form-switch mx-2">
<input type="checkbox" name="product_order_send_mail_customer" class="form-check-input" value="1" id="sendMailToCustomer" <?php if(getUserSettingValue('product_order_send_mail_customer', getLogInUserId())): echo 'checked'; endif; ?>>
<span class="custom-switch-indicator"></span>
</label>
</div>
<div>
<label class="ms-auto" for="product_order_send_mail_user"><?php echo e(__('messages.setting.send_email_to_user')); ?></label>
<label class="form-switch mx-2">
<input type="checkbox" name="product_order_send_mail_user" class="form-check-input" value="1" id="sendMailToUser" <?php if(getUserSettingValue('product_order_send_mail_user', getLogInUserId())): echo 'checked'; endif; ?>>
<span class="custom-switch-indicator"></span>
</label>
</div>
<div class="dropdown d-flex align-items-center me-4 me-md-5" wire:ignore>
<button
class="btn btn btn-icon btn-primary text-white dropdown-toggle hide-arrow ps-2 pe-0"
type="button" id="dropdownMenuProduct" data-bs-auto-close="outside"
data-bs-toggle="dropdown" aria-expanded="false">
<i class='fas fa-filter'></i>
</button>
<div class="dropdown-menu py-0" aria-labelledby="dropdownMenuProduct">
<div class="text-start border-bottom py-4 px-7">
<h3 class="text-gray-900 mb-0"><?php echo e(__('messages.common.filter')); ?></h3>
</div>
<?php
$productType = \App\Models\Product::PAYMENT_METHOD;
?>
<div class="p-5">
<div class="mb-5">
<label for="exampleInputSelect2" class="form-label"><?php echo e(__('messages.payment_type')); ?></label>
<?php echo e(Form::select('type',getTranslatedData($productType), null,['class' => 'form-control form-select','data-control'=>"select2" ,'id' => 'productPaymentType', 'wire:ignore'])); ?>
</div>
<div class="d-flex justify-content-end">
<button type="reset" id="productOrderResetFilter" class="btn btn-secondary"><?php echo e(__('messages.common.reset')); ?></button>
</div>
</div>
</div>
</div>
</div>
<?php /**PATH /home/getxxhzo/app.genicards.com/resources/views/product_transactions/filter.blade.php ENDPATH**/ ?>