!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/Coinpayment/Resources/views/   drwxr-xr-x
Free 27.57 GB of 117.98 GB (23.37%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     pay.blade.php (2.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('gateway::layouts.payment')

@section('content')
    <div class="col-md-12">
        <h2>{{ __('Paying with CoinPayment') }}</h2>
        @include('gateway::partial.instruction')
    </div>
    <div class="col-md-12 p-4 payment-box align-center mt-2">
        <form
            action="{{ route('gateway.complete', ['gateway' => config('coinpayment.alias'), 'key' => $purchaseData->code]) }}"
            method="post" id="payment-form">
            @csrf
            <div class="field full align-left">
                <label for="name">{{ __('Email') }}<span class="text-red">*</span></label>
                <input id="name" type="email" name="email" required placeholder="example@mail.com">
            </div>
            <div class="field full align-left">
                <label for="name">{{ __('Select currency you want to pay:') }}<span class="text-red">*</span></label>
                <select name="currency">
                    @foreach ($coinpayment->currencies as $currency)
                        <option value="{{ $currency }}">{{ $currency }}</option>
                    @endforeach
                </select>
            </div>
            @if (count($currencies) > 0)
                <div class="field full table">
                    <table>
                        <thead>
                            <tr>
                                <th>{{ __('Logo') }}</th>
                                <th>{{ __('Currency') }}</th>
                                <th>{{ __('Rate') }}</th>
                                <th>{{ __('CP Trx Fee') }}</th>
                            </tr>
                        </thead>
                        <tbody>
                            @foreach ($currencies as $name => $detail)
                                <tr>
                                    <td><img src="{{ $detail['image'] }}" alt="{{ $name }}"></td>
                                    <td>{{ $name }}</td>
                                    <td>{{ $detail['rate_btc'] }}</td>
                                    <td>{{ $detail['tx_fee'] }}</td>
                                </tr>
                            @endforeach
                        </tbody>
                    </table>
                    <small>{{ __('Note: These are the latest data from CoinPayment') }}</small>
                </div>
            @endif
            <button type="submit" class="sub-btn">
                <span> <i class="{{ config('coinpayment.fa_logo') }}"></i></span>{{ __('Pay With CoinPayment') }}
            </button>
        </form>
    </div>
@endsection

@section('css')
    <link rel="stylesheet" href="{{ asset('Modules/Coinpayment/Resources/assets/style.min.css') }}">
@endsection

:: 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.0043 ]--