File manager - Edit - /var/www/payraty/inventory_main/storage/framework/views/bde80c860a7351dad4ee7778a9c52fa9d31ccf60.php
Back
<!-- Invoice payment add modal --> <div class="modal fade" id="invoicePaymentAdd" tabindex="-1" role="dialog" aria-labelledby="invoicePaymentAddTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <form action="<?php echo e(route('admin.invoices.add_payment')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="product_id" id="add-invoice-payment-invoice-id"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle"><?php echo e(__('custom.add_payment')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <div class="col-sm-12"> <div class="form-group"> <label for=""><?php echo e(__('custom.date')); ?> <span class="error">*</span></label> <input type="text" name="date" class="form-control datepicker-autoclose" autocomplete="off" value="<?php echo e(old('date')); ?>" required> <?php $__errorArgs = ['date']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="error"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> </div> <div class="col-sm-12"> <div class="form-group"> <label for=""><?php echo e(__('custom.payment_type')); ?> <span class="error">*</span></label> <input type="text" name="payment_type" class="form-control" value="<?php echo e(old('payment_type')); ?>" required maxlength="50"> <?php $__errorArgs = ['payment_type']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="error"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> </div> <div class="col-sm-12"> <div class="form-group"> <label for=""><?php echo e(__('custom.amount')); ?> <span class="error">*</span></label> <input type="number" name="amount" class="form-control" value="<?php echo e(old('amount')); ?>" required> <?php $__errorArgs = ['amount']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="error"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> </div> <div class="col-sm-12"> <div class="form-group"> <label for=""><?php echo e(__('custom.notes')); ?></label> <input type="text" name="notes" class="form-control" value="<?php echo e(old('notes')); ?>" maxlength="200"> <?php $__errorArgs = ['notes']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="error"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal"><?php echo e(__('custom.close')); ?></button> <button type="submit" class="btn btn-primary"><?php echo e(__('custom.save_payment')); ?></button> </div> </form> </div> </div> </div> <!-- Invoice payment show modal --> <div class="modal fade" id="invoicePaymentView" tabindex="-1" role="dialog" aria-labelledby="invoicePaymentViewTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-lg" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle"><?php echo e(__('custom.payment_history')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <div class="table-responsive"> <table id="invoice-payment-view-table" class="table table-striped table-bordered"> <thead> <tr> <th scope="col"><?php echo e(__('custom.date')); ?></th> <th scope="col"><?php echo e(__('custom.payment_type')); ?></th> <th scope="col"><?php echo e(__('custom.amount')); ?></th> <th scope="col"><?php echo e(__('custom.notes')); ?></th> <th scope="col" class="text-center"><?php echo e(__('custom.action')); ?></th> </tr> </thead> <tbody> </tbody> </table> </div> </div> </div> </div> </div> <!-- Invoice payment send modal --> <div class="modal fade" id="invoicePaymentSend" tabindex="-1" role="dialog" aria-labelledby="invoicePaymentSendTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <form action="<?php echo e(route('admin.invoices.sendInvoice')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="invoice_id" id="send-invoice-payment-invoice-id"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle"><?php echo e(__('custom.send_invoice')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <div class="col-sm-12"> <div class="form-group"> <label for=""><?php echo e(__('custom.email')); ?> <span class="error">*</span></label> <input id="send-invoice-payment-email" type="email" name="email" class="form-control" value="<?php echo e(old('email')); ?>" required maxlength="50"> <?php $__errorArgs = ['email']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="error"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal"><?php echo e(__('custom.close')); ?></button> <button type="submit" class="btn btn-primary"><?php echo e(__('custom.send_invoice')); ?></button> </div> </form> </div> </div> </div> <!-- Invoice live url --> <div class="modal fade" id="liveInvoiceUrl" tabindex="-1" role="dialog" aria-labelledby="liveInvoiceUrlTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-lg" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle"><?php echo e(__('custom.invoice_live_url')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <div class="col-sm-12"> <div class="form-group"> <input type="text" class="form-control" id="live-invoice-token" disabled> <div class="ic-copy-msg text-right mt-2"> <span style="display: none" id="copied_msg"><?php echo e(__('custom.copied')); ?></span> </div> </div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal"><?php echo e(__('custom.close')); ?></button> <button type="button" class="btn btn-primary copy-url-btn"><?php echo e(__('custom.copy_url')); ?></button> </div> </div> </div> </div> <div class="modal fade" id="stockUpdate" tabindex="-1" role="dialog" aria-labelledby="StockUpdateTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-lg" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle"><?php echo e(__('custom.stock_update')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <div class="table-responsive" id="stack-update-pupup"> </div> </div> </div> </div> </div> <?php /**PATH /var/www/payraty/inventory_main/resources/views/admin/layouts/modals/invoice_payment.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings