⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
storage
/
framework
/
views
/
View File Name :
7979c2b1347978b24af6e2d1e9cbab1c.php
<?php $__env->startSection('page-title'); ?> <?php echo e(__('Expense Create')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('breadcrumb'); ?> <li class="breadcrumb-item"><a href="<?php echo e(route('dashboard')); ?>"><?php echo e(__('Dashboard')); ?></a></li> <li class="breadcrumb-item"><a href="<?php echo e(route('expense.index')); ?>"><?php echo e(__('Expense')); ?></a></li> <li class="breadcrumb-item"><?php echo e(__('Expense Create')); ?></li> <?php $__env->stopSection(); ?> <?php $__env->startPush('script-page'); ?> <script src="<?php echo e(asset('js/jquery-ui.min.js')); ?>"></script> <script src="<?php echo e(asset('js/jquery.repeater.min.js')); ?>"></script> <script src="<?php echo e(asset('js/jquery-searchbox.js')); ?>"></script> <script> var selector = "body"; if ($(selector + " .repeater").length) { var $dragAndDrop = $("body .repeater tbody").sortable({ handle: '.sort-handler' }); var $repeater = $(selector + ' .repeater').repeater({ initEmpty: false, defaultValues: { 'status': 1 }, show: function () { $(this).slideDown(); var file_uploads = $(this).find('input.multi'); if (file_uploads.length) { $(this).find('input.multi').MultiFile({ max: 3, accept: 'png|jpg|jpeg', max_size: 2048 }); } // for item SearchBox ( this function is custom Js ) JsSearchBox(); $('.select2').select2(); }, hide: function (deleteElement) { if (confirm('Are you sure you want to delete this element?')) { $(this).slideUp(deleteElement); $(this).remove(); var inputs = $(".amount"); var subTotal = 0; for (var i = 0; i < inputs.length; i++) { subTotal = parseFloat(subTotal) + parseFloat($(inputs[i]).html()); } $('.subTotal').html(subTotal.toFixed(2)); $('.totalAmount').html(subTotal.toFixed(2)); } }, ready: function (setIndexes) { $dragAndDrop.on('drop', setIndexes); }, isFirstItemUndeletable: true }); var value = $(selector + " .repeater").attr('data-value'); if (typeof value != 'undefined' && value.length != 0) { value = JSON.parse(value); $repeater.setList(value); } } $(document).on('change', '.item', function () { var iteams_id = $(this).val(); var url = $(this).data('url'); var el = $(this); $.ajax({ url: url, type: 'POST', headers: { 'X-CSRF-TOKEN': jQuery('#token').val() }, data: { 'product_id': iteams_id }, cache: false, success: function (data) { var item = JSON.parse(data); // console.log(item) $(el.parent().parent().find('.quantity')).val(1); $(el.parent().parent().find('.price')).val(item.product.purchase_price); $(el.parent().parent().parent().find('.pro_description')).val(item.product.description); var taxes = ''; var tax = []; var totalItemTaxRate = 0; if (item.taxes == 0) { taxes += '-'; } else { for (var i = 0; i < item.taxes.length; i++) { taxes += '<span class="badge bg-primary mt-1 mr-2">' + item.taxes[i].name + ' ' + '(' + item.taxes[i].rate + '%)' + '</span>'; tax.push(item.taxes[i].id); totalItemTaxRate += parseFloat(item.taxes[i].rate); } } var itemTaxPrice = parseFloat((totalItemTaxRate / 100) * (item.product.purchase_price * 1)); $(el.parent().parent().find('.itemTaxPrice')).val(itemTaxPrice.toFixed(2)); $(el.parent().parent().find('.itemTaxRate')).val(totalItemTaxRate.toFixed(2)); $(el.parent().parent().find('.taxes')).html(taxes); $(el.parent().parent().find('.tax')).val(tax); $(el.parent().parent().find('.unit')).html(item.unit); $(el.parent().parent().find('.discount')).val(0); var inputs = $(".amount"); var subTotal = 0; for (var i = 0; i < inputs.length; i++) { subTotal = parseFloat(subTotal) + parseFloat($(inputs[i]).html()); } var accountinputs = $(".accountamount"); var accountSubTotal = 0; for (var i = 0; i < accountinputs.length; i++) { var currentInputValue = parseFloat(accountinputs[i].innerHTML); if (!isNaN(currentInputValue)) { accountSubTotal += currentInputValue; } } var totalItemPrice = 0; var priceInput = $('.price'); for (var j = 0; j < priceInput.length; j++) { totalItemPrice += parseFloat(priceInput[j].value); } var totalItemTaxPrice = 0; var itemTaxPriceInput = $('.itemTaxPrice'); for (var j = 0; j < itemTaxPriceInput.length; j++) { totalItemTaxPrice += parseFloat(itemTaxPriceInput[j].value); $(el.parent().parent().find('.amount')).html(parseFloat(item.totalAmount)+parseFloat(itemTaxPriceInput[j].value)); } var totalItemDiscountPrice = 0; var itemDiscountPriceInput = $('.discount'); for (var k = 0; k < itemDiscountPriceInput.length; k++) { totalItemDiscountPrice += parseFloat(itemDiscountPriceInput[k].value); } $('.subTotal').html((totalItemPrice+accountSubTotal).toFixed(2)); $('.totalTax').html(totalItemTaxPrice.toFixed(2)); $('.totalAmount').html((parseFloat(totalItemPrice) - parseFloat(totalItemDiscountPrice) + parseFloat(totalItemTaxPrice)).toFixed(2)); var totalAmount= parseFloat(totalItemPrice) - parseFloat(totalItemDiscountPrice) + parseFloat(totalItemTaxPrice); $('.totalAmount').val(totalAmount.toFixed(2)); }, }); }); $(document).on('keyup', '.quantity', function () { var quntityTotalTaxPrice = 0; var el = $(this).parent().parent().parent().parent(); var quantity = $(this).val(); var price = $(el.find('.price')).val(); var discount = $(el.find('.discount')).val(); if(discount.length <= 0) { discount = 0 ; } var totalItemPrice = (quantity * price) - discount; var amount = (totalItemPrice); var totalItemTaxRate = $(el.find('.itemTaxRate')).val(); var itemTaxPrice = parseFloat((totalItemTaxRate / 100) * (totalItemPrice)); $(el.find('.itemTaxPrice')).val(itemTaxPrice.toFixed(2)); $(el.find('.amount')).html(parseFloat(itemTaxPrice)+parseFloat(amount)); var totalItemTaxPrice = 0; var itemTaxPriceInput = $('.itemTaxPrice'); for (var j = 0; j < itemTaxPriceInput.length; j++) { totalItemTaxPrice += parseFloat(itemTaxPriceInput[j].value); } var totalItemPrice = 0; var inputs_quantity = $(".quantity"); var priceInput = $('.price'); for (var j = 0; j < priceInput.length; j++) { totalItemPrice += (parseFloat(priceInput[j].value) * parseFloat(inputs_quantity[j].value)); } var totalAccount = 0; var accountInput = $('.accountAmount'); for (var j = 0; j < accountInput.length; j++) { if (typeof accountInput[j].value != 'undefined') { var accountInputPrice = parseFloat(accountInput[j].value); if (isNaN(accountInputPrice)) { totalAccount = 0; } else { totalAccount += accountInputPrice; } } } var inputs = $(".amount"); var subTotal = 0; for (var i = 0; i < inputs.length; i++) { subTotal = parseFloat(subTotal) + parseFloat($(inputs[i]).html()); } var sumAmount = totalItemPrice + totalAccount; $('.subTotal').html((sumAmount).toFixed(2)); $('.totalTax').html(totalItemTaxPrice.toFixed(2)); $('.totalAmount').html((parseFloat(subTotal)+totalAccount).toFixed(2)); //get hidden value of totalAmount var totalAmount= (parseFloat(subTotal)+totalAccount); $('.totalAmount').val(totalAmount.toFixed(2)); }) $(document).on('keyup change', '.price', function () { var el = $(this).parent().parent().parent().parent(); var price = $(this).val(); var quantity = $(el.find('.quantity')).val(); var discount = $(el.find('.discount')).val(); if(discount.length <= 0) { discount = 0 ; } var totalItemPrice = (quantity * price)-discount; var amount = (totalItemPrice); var totalItemTaxRate = $(el.find('.itemTaxRate')).val(); var itemTaxPrice = parseFloat((totalItemTaxRate / 100) * (totalItemPrice)); $(el.find('.itemTaxPrice')).val(itemTaxPrice.toFixed(2)); $(el.find('.amount')).html(parseFloat(itemTaxPrice)+parseFloat(amount)); var totalItemTaxPrice = 0; var itemTaxPriceInput = $('.itemTaxPrice'); for (var j = 0; j < itemTaxPriceInput.length; j++) { totalItemTaxPrice += parseFloat(itemTaxPriceInput[j].value); } var totalItemPrice = 0; var inputs_quantity = $(".quantity"); var priceInput = $('.price'); for (var j = 0; j < priceInput.length; j++) { totalItemPrice += (parseFloat(priceInput[j].value) * parseFloat(inputs_quantity[j].value)); } var totalAccount = 0; var accountInput = $('.accountAmount'); for (var j = 0; j < accountInput.length; j++) { if (typeof accountInput[j].value != 'undefined') { var accountInputPrice = parseFloat(accountInput[j].value); if (isNaN(accountInputPrice)) { totalAccount = 0; } else { totalAccount += accountInputPrice; } } } var inputs = $(".amount"); var subTotal = 0; for (var i = 0; i < inputs.length; i++) { subTotal = parseFloat(subTotal) + parseFloat($(inputs[i]).html()); } $('.subTotal').html((totalItemPrice+totalAccount).toFixed(2)); $('.totalTax').html(totalItemTaxPrice.toFixed(2)); $('.totalAmount').html((parseFloat(subTotal)+totalAccount).toFixed(2)); //get hidden value of totalAmount var totalAmount= (parseFloat(subTotal)+totalAccount); $('.totalAmount').val(totalAmount.toFixed(2)); }) $(document).on('keyup change', '.discount', function () { var el = $(this).parent().parent().parent(); var discount = $(this).val(); if(discount.length <= 0) { discount = 0 ; } var price = $(el.find('.price')).val(); var quantity = $(el.find('.quantity')).val(); var totalItemPrice = (quantity * price) - discount; var amount = (totalItemPrice); var totalItemTaxRate = $(el.find('.itemTaxRate')).val(); var itemTaxPrice = parseFloat((totalItemTaxRate / 100) * (totalItemPrice)); $(el.find('.itemTaxPrice')).val(itemTaxPrice.toFixed(2)); $(el.find('.amount')).html(parseFloat(itemTaxPrice)+parseFloat(amount)); var totalItemTaxPrice = 0; var itemTaxPriceInput = $('.itemTaxPrice'); for (var j = 0; j < itemTaxPriceInput.length; j++) { totalItemTaxPrice += parseFloat(itemTaxPriceInput[j].value); } var totalItemPrice = 0; var inputs_quantity = $(".quantity"); var priceInput = $('.price'); for (var j = 0; j < priceInput.length; j++) { totalItemPrice += (parseFloat(priceInput[j].value) * parseFloat(inputs_quantity[j].value)); } var inputs = $(".amount"); var subTotal = 0; for (var i = 0; i < inputs.length; i++) { subTotal = parseFloat(subTotal) + parseFloat($(inputs[i]).html()); } var totalItemDiscountPrice = 0; var itemDiscountPriceInput = $('.discount'); for (var k = 0; k < itemDiscountPriceInput.length; k++) { totalItemDiscountPrice += parseFloat(itemDiscountPriceInput[k].value); } var totalAccount = 0; var accountInput = $('.accountAmount'); for (var j = 0; j < accountInput.length; j++) { if (typeof accountInput[j].value != 'undefined') { var accountInputPrice = parseFloat(accountInput[j].value); if (isNaN(accountInputPrice)) { totalAccount = 0; } else { totalAccount += accountInputPrice; } } } // $('.subTotal').html(totalItemPrice.toFixed(2)); $('.subTotal').html((totalItemPrice+totalAccount).toFixed(2)); $('.totalTax').html(totalItemTaxPrice.toFixed(2)); $('.totalAmount').html((parseFloat(subTotal)+totalAccount).toFixed(2)); $('.totalDiscount').html(totalItemDiscountPrice.toFixed(2)); //get hidden value of totalAmount var totalAmount= (parseFloat(subTotal)+totalAccount); $('.totalAmount').val(totalAmount.toFixed(2)); }) $(document).on('keyup change', '.accountAmount', function () { var el1 = $(this).parent().parent().parent().parent(); var el = $(this).parent().parent().parent().parent().parent(); var quantityDiv = $(el.find('.quantity')); var priceDiv = $(el.find('.price')); var discountDiv = $(el.find('.discount')); var itemSubTotal=0; for (var p = 0; p < priceDiv.length; p++) { var quantity=quantityDiv[p].value; var price=priceDiv[p].value; var discount=discountDiv[p].value; if(discount.length <= 0) { discount = 0 ; } itemSubTotal += (quantity*price) - (discount); } var totalItemTaxPrice = 0; var itemTaxPriceInput = $('.itemTaxPrice'); for (var j = 0; j < itemTaxPriceInput.length; j++) { var parsedValue = parseFloat(itemTaxPriceInput[j].value); if (!isNaN(parsedValue)) { totalItemTaxPrice += parsedValue; } } var amount = $(this).val(); el1.find('.accountamount').html(amount); var totalAccount = 0; var accountInput = $('.accountAmount'); for (var j = 0; j < accountInput.length; j++) { totalAccount += (parseFloat(accountInput[j].value) ); } var inputs = $(".accountamount"); var subTotal = 0; for (var i = 0; i < inputs.length; i++) { subTotal = parseFloat(subTotal) + parseFloat($(inputs[i]).html()); } $('.subTotal').text((totalAccount+itemSubTotal).toFixed(2)); $('.totalAmount').text((parseFloat((subTotal + itemSubTotal) + (totalItemTaxPrice))).toFixed(2)); //get hidden value of totalAmount var totalAmount= (parseFloat((subTotal + itemSubTotal) + (totalItemTaxPrice))); $('.totalAmount').val(totalAmount.toFixed(2)); }) var id = '<?php echo e($Id); ?>'; if (id > 0) { $('#vender').val(id).change(); } </script> <script> $(document).on('click', '[data-repeater-delete]', function () { $(".price").change(); $(".discount").change(); }); </script> <script> $(document).ready(function() { $('input[name=type]:first').prop('checked',true); }); $('input[name="type"]:radio').on('change', function (e) { var type = $(this).val(); if (type == 'employee') { $('.employee').addClass('d-block'); $('.employee').removeClass('d-none'); $('.customer').addClass('d-none'); $('.customer').removeClass('d-block'); $('.vendor').addClass('d-none'); $('.vendor').removeClass('d-block'); } else if (type == 'customer') { $('.customer').addClass('d-block'); $('.customer').removeClass('d-none'); $('.employee').addClass('d-none'); $('.employee').removeClass('d-block'); $('.vendor').addClass('d-none'); $('.vendor').removeClass('d-block'); } else { $('.vendor').addClass('d-block'); $('.vendor').removeClass('d-none'); $('.employee').addClass('d-none'); $('.employee').removeClass('d-block'); $('.customer').addClass('d-none'); $('.customer').removeClass('d-block'); } }); $('input[name="type"]:radio:checked').trigger('change'); $(document).on('change', '#employee', function () { $('#employee_detail').removeClass('d-none'); $('#employee_detail').addClass('d-block'); $('#employee-box').removeClass('d-block'); $('#employee-box').addClass('d-none'); var cId = $(this).val(); var url = $('#employee').data('url'); $.ajax({ url: url, type: 'POST', headers: { 'X-CSRF-TOKEN': jQuery('#token').val() }, data: { 'id': cId }, cache: false, success: function (data) { if (data != '') { $('#employee_detail').html(data); } else { $('#employee-box').removeClass('d-none'); $('#employee-box').addClass('d-block'); $('#employee_detail').removeClass('d-block'); $('#employee_detail').addClass('d-none'); } }, }); }); $(document).on('change', '#customer', function () { $('#customer_detail').removeClass('d-none'); $('#customer_detail').addClass('d-block'); $('#customer-box').removeClass('d-block'); $('#customer-box').addClass('d-none'); var id = $(this).val(); var url = $('#customer').data('url'); $.ajax({ url: url, type: 'POST', headers: { 'X-CSRF-TOKEN': jQuery('#token').val() }, data: { 'id': id }, cache: false, success: function (data) { if (data != '') { $('#customer_detail').html(data); } else { $('#customer-box').removeClass('d-none'); $('#customer-box').addClass('d-block'); $('#customer_detail').removeClass('d-block'); $('#customer_detail').addClass('d-none'); } }, }); }); $(document).on('change', '#vender', function () { $('#vender_detail').removeClass('d-none'); $('#vender_detail').addClass('d-block'); $('#vender-box').removeClass('d-block'); $('#vender-box').addClass('d-none'); var id = $(this).val(); var url = $(this).data('url'); $.ajax({ url: url, type: 'POST', headers: { 'X-CSRF-TOKEN': jQuery('#token').val() }, data: { 'id': id }, cache: false, success: function (data) { if (data != '') { $('#vender_detail').html(data); } else { $('#vender-box').removeClass('d-none'); $('#vender-box').addClass('d-block'); $('#vender_detail').removeClass('d-block'); $('#vender_detail').addClass('d-none'); } }, }); }); $(document).on('click', '#remove', function () { $('#vender-box').removeClass('d-none'); $('#vender-box').addClass('d-block'); $('#vender_detail').removeClass('d-block'); $('#vender_detail').addClass('d-none'); $('#customer-box').removeClass('d-none'); $('#customer-box').addClass('d-block'); $('#customer_detail').removeClass('d-block'); $('#customer_detail').addClass('d-none'); $('#employee-box').removeClass('d-none'); $('#employee-box').addClass('d-block'); $('#employee_detail').removeClass('d-block'); $('#employee_detail').addClass('d-none'); }) </script> <?php $__env->stopPush(); ?> <?php $__env->startSection('content'); ?> <div class="row"> <?php echo e(Form::open(array('url' => 'expense','class'=>'w-100'))); ?> <div class="col-12"> <input type="hidden" name="_token" id="token" value="<?php echo e(csrf_token()); ?>"> <div class="card"> <div class="card-body"> <div class="row"> <div class="col-md-6"> <div class="col"> <div class="form-check form-check-inline form-group"> <input type="radio" id="employee_radio" value="employee" name="type" class="form-check-input <?php echo e(isset($_GET['type']) && $_GET['type']=='employee' ?'checked':'checked'); ?>" > <label class="form-check-label" for="employee"><?php echo e(__('Employee')); ?></label> </div> <div class="form-check form-check-inline form-group"> <input type="radio" id="customer_radio" value="customer" name="type" class="form-check-input" > <label class="form-check-label" for="customer"><?php echo e(__('Customer')); ?></label> </div> <div class="form-check form-check-inline form-group"> <input type="radio" id="vendor_radio" value="vendor" name="type" class="form-check-input" > <label class="form-check-label" for="vendor"><?php echo e(__('Vendor')); ?></label> </div> </div> <div class="col employee"> <div class="form-group" id="employee-box"> <?php echo e(Form::label('employee_id', __('Payee'),['class'=>'form-label'])); ?> <?php echo e(Form::select('employee_id', $employees,null, array('class' => 'form-control select','id'=>'employee','data-url'=>route('expense.employee')))); ?> </div> <div id="employee_detail" class="d-none"> </div> </div> <div class="col customer d-none"> <div class="form-group" id="customer-box"> <?php echo e(Form::label('customer_id', __('Payee'),['class'=>'form-label'])); ?> <?php echo e(Form::select('customer_id', $customers,null, array('class' => 'form-control select','id'=>'customer','data-url'=>route('expense.customer')))); ?> </div> <div id="customer_detail" class="d-none"> </div> </div> <div class="col vendor d-none"> <div class="form-group" id="vender-box"> <?php echo e(Form::label('vender_id', __('Payee'),['class'=>'form-label'])); ?> <?php echo e(Form::select('vender_id', $venders,$Id, array('class' => 'form-control select','id'=>'vender','data-url'=>route('expense.vender')))); ?> </div> <div id="vender_detail" class="d-none"> </div> </div> </div> <div class="col-md-6"> <div class="row"> <div class="col-md-6"> <div class="form-group"> <?php echo e(Form::label('payment_date', __('Payment Date'),['class'=>'form-label'])); ?> <?php echo e(Form::date('payment_date',null,array('class'=>'form-control','required'=>'required'))); ?> </div> </div> <div class="col-md-6"> <div class="form-group"> <?php echo e(Form::label('category_id', __('Category'),['class'=>'form-label'])); ?> <?php echo e(Form::select('category_id', $category,null, array('class' => 'form-control select'))); ?> </div> </div> <div class="col-md-6"> <div class="form-group"> <?php echo e(Form::label('account_id', __('Account'),['class'=>'form-label'])); ?> <?php echo e(Form::select('account_id',$accounts,null, array('class' => 'form-control ','required'=>'required'))); ?> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-12"> <h5 class="d-inline-block mb-4"><?php echo e(__('Product & Services')); ?></h5> <div class="card repeater"> <div class="item-section py-2"> <div class="row justify-content-between align-items-center"> <div class="col-md-12 d-flex align-items-center justify-content-between justify-content-md-end"> <div class="all-button-box me-2"> <a href="#" data-repeater-create="" class="btn btn-primary" data-bs-toggle="modal" data-target="#add-bank"> <i class="ti ti-plus"></i> <?php echo e(__('Add Item')); ?> </a> </div> </div> </div> </div> <div class="card-body table-border-style"> <div class="table-responsive"> <table class="table datatable mb-0" data-repeater-list="items" id="sortable-table"> <thead> <tr> <th width="20%"><?php echo e(__('Items')); ?></th> <th><?php echo e(__('Quantity')); ?></th> <th><?php echo e(__('Price')); ?> </th> <th><?php echo e(__('Discount')); ?></th> <th><?php echo e(__('Tax')); ?> (%)</th> <th class="text-end"><?php echo e(__('Amount')); ?> <br><small class="text-danger font-bold"><?php echo e(__('after tax & discount')); ?></small> </th> <th></th> </tr> </thead> <tbody class="ui-sortable" data-repeater-item> <tr> <td width="25%" class="form-group pt-0"> <?php echo e(Form::select('item', $product_services,'', array('class' => 'form-control select2 item','data-url'=>route('expense.product')))); ?> </td> <td> <div class="form-group price-input input-group search-form"> <?php echo e(Form::text('quantity','', array('class' => 'form-control quantity','placeholder'=>__('Qty')))); ?> <span class="unit input-group-text bg-transparent"></span> </div> </td> <td> <div class="form-group price-input input-group search-form"> <?php echo e(Form::text('price','', array('class' => 'form-control price','placeholder'=>__('Price')))); ?> <span class="input-group-text bg-transparent"><?php echo e(\Auth::user()->currencySymbol()); ?></span> </div> </td> <td> <div class="form-group price-input input-group search-form"> <?php echo e(Form::text('discount','', array('class' => 'form-control discount','placeholder'=>__('Discount')))); ?> <span class="input-group-text bg-transparent"><?php echo e(\Auth::user()->currencySymbol()); ?></span> </div> </td> <td> <div class="form-group"> <div class="input-group"> <div class="taxes"></div> <?php echo e(Form::hidden('tax','', array('class' => 'form-control tax'))); ?> <?php echo e(Form::hidden('itemTaxPrice','', array('class' => 'form-control itemTaxPrice'))); ?> <?php echo e(Form::hidden('itemTaxRate','', array('class' => 'form-control itemTaxRate'))); ?> </div> </div> </td> <td class="text-end amount"> 0.00 </td> <td> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('delete proposal product')): ?> <a href="#" class="ti ti-trash text-white repeater-action-btn bg-danger ms-2" data-repeater-delete></a> <?php endif; ?> </td> </tr> <tr> <td class="form-group"> <select name="chart_account_id" class="form-control"> <?php $__currentLoopData = $chartAccounts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $chartAccount): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($key); ?>" class="subAccount"><?php echo e($chartAccount); ?></option> <?php $__currentLoopData = $subAccounts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $subAccount): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if($key == $subAccount['account']): ?> <option value="<?php echo e($subAccount['id']); ?>" class="ms-5"> <?php echo e($subAccount['name']); ?></option> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </td> <td class="form-group"> <div class="input-group "> <?php echo e(Form::text('amount','', array('class' => 'form-control accountAmount','placeholder'=>__('Amount')))); ?> <span class="input-group-text bg-transparent"><?php echo e(\Auth::user()->currencySymbol()); ?></span> </div> </td> <td colspan="2" class="form-group"> <?php echo e(Form::textarea('description', null, ['class'=>'form-control pro_description','rows'=>'1','placeholder'=>__('Description')])); ?> </td> <td></td> <td class="text-end accountamount"> 0.00 </td> </tr> </tbody> <tfoot> <tr> <td> </td> <td> </td> <td> </td> <td></td> <td><strong><?php echo e(__('Sub Total')); ?> (<?php echo e(\Auth::user()->currencySymbol()); ?>)</strong></td> <td class="text-end subTotal">0.00</td> <td></td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td></td> <td><strong><?php echo e(__('Discount')); ?> (<?php echo e(\Auth::user()->currencySymbol()); ?>)</strong></td> <td class="text-end totalDiscount">0.00</td> <td></td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td></td> <td><strong><?php echo e(__('Tax')); ?> (<?php echo e(\Auth::user()->currencySymbol()); ?>)</strong></td> <td class="text-end totalTax">0.00</td> <td></td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td class="blue-text"><strong><?php echo e(__('Total Amount')); ?> (<?php echo e(\Auth::user()->currencySymbol()); ?>)</strong></td> <td class="blue-text text-end totalAmount">0.00</td> <?php echo e(Form::hidden('totalAmount',null, array('class' => 'form-control totalAmount'))); ?> <td></td> </tr> </tfoot> </table> </div> </div> </div> </div> <div class="modal-footer"> <input type="button" value="<?php echo e(__('Cancel')); ?>" onclick="location.href = '<?php echo e(route("expense.index")); ?>';" class="btn btn-light"> <input type="submit" value="<?php echo e(__('Create')); ?>" class="btn btn-primary"> </div> <?php echo e(Form::close()); ?> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/resources/views/expense/create.blade.php ENDPATH**/ ?>