!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/sms.picotech.app/public_html/storage/framework/views/   drwxrwxrwx
Free 28.4 GB of 117.98 GB (24.07%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     b1175ffad43496e6dad4936f4e21923e.php (21.39 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div class="row">
    <div class="col-md-12">
        <div class="row">
            <div class="col-md-6">

            </div>
            <div class="col-md-6">

            </div>
        </div>

        <div class="row">
            <div class="col-md-3">
                <div class="form-group">
                    <h5>  <?php echo e(trans('customer.gateway_setting')); ?></h5>
                </div>
            </div>
            <?php if(isset($gateway) && $gateway->inputs): ?>
                <div class="col-md-3">
                    <div class="text-right pr-1">
                        <span class="change-mode" data-toggle="tooltip" title="Switch the view"><i
                                class="fa fa-sync"></i></span>
                    </div>
                </div>
            <?php endif; ?>
        </div>

        <div class="row">

            <div class="col-md-6 border-right-d">
                <div class="row">
                    <div class="col-md-12">
                        <div class="row">
                            <div class="form-group col-md-6">
                                <label for=""><?php echo e(trans('customer.name')); ?></label>
                                <input autocomplete="off" <?php echo e(isset($gateway) && $gateway->name=='Smpp'?'disabled':''); ?> type="text" id="gatewayName" class="form-control"
                                       value="<?php echo e(isset($gateway)?$gateway->name:(old('name')?old('name'):'')); ?>"
                                       name="name" placeholder="<?php echo e(trans('Please Select or Enter Name')); ?>">
                            </div>
                            <div class="form-group col-md-3">
                                <label for=""><?php echo e(trans('customer.url_type')); ?></label>
                                <select name="url_type" class="form-control">
                                    <option
                                        <?php echo e(isset($method) && $method=='get'?'selected':(old('url_type') && old('url_type')=='get'?'selected':'')); ?> value="get"><?php echo e(trans('customer.get')); ?></option>
                                    <option
                                        <?php echo e(isset($method) && $method=='post'?'selected':(old('url_type') && old('url_type')=='post'?'selected':'')); ?> value="post"><?php echo e(trans('customer.post')); ?></option>
                                </select>
                            </div>
                            <div class="form-group col-md-3">
                                <label class="d-block" for=""><?php echo e(trans('customer.status')); ?>

                                </label>
                                <select name="status" class="form-control" id="">
                                    <option
                                        <?php echo e(isset($gateway) && $gateway->status=='active'?'selected':(old('status') && old('status'=='active'?'selected':''))); ?> value="active"><?php echo e(trans('customer.active')); ?></option>
                                    <option
                                        <?php echo e(isset($gateway) && $gateway->status=='inactive'?'selected':(old('status') && old('status'=='inactive'?'selected':''))); ?> value="inactive"><?php echo e(trans('customer.inactive')); ?></option>
                                </select>
                            </div>
                        </div>
                    </div>
                    <div class="col-md-12">
                        <div id="gateway-custom-section"
                             style="display: <?php if(isset($gateway) && $gateway->updated_from_gateway_prefill=='true'): ?> none <?php else: ?> block <?php endif; ?>">
                            <div class="row">
                                <div class="form-group col-md-4 col-5">
                                    <label><?php echo e(trans('customer.weblink')); ?></label>
                                    <input type="text" class="form-control" value="weblink" disabled name="weblink"
                                           placeholder="<?php echo e(trans('Enter Weblink')); ?>">
                                </div>
                                <div class="form-group col-md-8 col-7 pt-2">
                                    <input type="text" class="form-control mt-4"
                                           value="<?php echo e(isset($url)?$url:(old('weblink_value')?old('weblink_value'):'')); ?>"
                                           name="weblink_value"
                                           id="weblink"
                                           placeholder="<?php echo e(trans('Enter Weblink Value')); ?>">
                                </div>
                            </div>

                            <div class="row">
                                <div class="form-group col-md-6 col-6">
                                    <label for=""><?php echo e(trans('customer.to_mobile_key')); ?></label>
                                    <input
                                        value="<?php echo e(isset($gateway)?$gateway->to_mobile_key:(old('to_mobile_key')?old('to_mobile_key'):'')); ?>"
                                        type="text" class="form-control" name="to_mobile_key"
                                        id="to_mobile_key"
                                        placeholder="<?php echo e(trans('customer.enter_to_mobile_key')); ?>">
                                </div>
                                <div class="form-group col-md-6 col-6">
                                    <label for=""><?php echo e(trans('customer.from_mobile_key')); ?></label>
                                    <input type="text"
                                           value="<?php echo e(isset($gateway)?$gateway->from_mobile_key:(old('from_mobile_key')?old('from_mobile_key'):'')); ?>"
                                           class="form-control" name="from_mobile_key" id="from_mobile_key"
                                           placeholder="<?php echo e(trans('customer.enter_from_key')); ?>">
                                </div>
                                <div class="form-group col-md-6 col-6">
                                    <label for=""><?php echo e(trans('customer.message_key')); ?></label>
                                    <input type="text"
                                           value="<?php echo e(isset($gateway)?$gateway->message_key:(old('message_key')?old('message_key'):'')); ?>"
                                           class="form-control" name="message_key" id="message_key"
                                           placeholder="<?php echo e(trans('customer.enter_message_key')); ?>">
                                </div>
                                <div class="form-group col-md-6 col-6">
                                    <label for=""><?php echo e(trans('customer.mms_mobile_key')); ?></label>
                                    <input type="text"
                                           value="<?php echo e(isset($gateway)?$gateway->mms_mobile_key:(old('mms_mobile_key')?old('mms_mobile_key'):'')); ?>"
                                           class="form-control" name="mms_mobile_key" id="mms_mobile_key"
                                           placeholder="<?php echo e(trans('customer.enter_mms_mobile_key')); ?>">
                                </div>
                            </div>
                            <div class="row">
                                <div class="form-group col-md-6 col-6">
                                    <label for=""><?php echo e(trans('customer.voice_sms_lang_key')); ?></label>
                                    <input type="text"
                                           value="<?php echo e(isset($gateway)?$gateway->voice_sms_lang_key:(old('voice_sms_lang_key')?old('voice_sms_lang_key'):'')); ?>"
                                           class="form-control" name="voice_sms_lang_key" id="voice_sms_lang_key"
                                           placeholder="<?php echo e(trans('customer.enter_voice_sms_lang_key')); ?>">
                                </div>
                                <div class="form-group col-md-6 col-6">
                                    <label for=""><?php echo e(trans('customer.voice_sms_voice_key')); ?></label>
                                    <input type="text"
                                           value="<?php echo e(isset($gateway)?$gateway->voice_sms_voice_key:(old('voice_sms_voice_key')?old('voice_sms_voice_key'):'')); ?>"
                                           class="form-control" name="voice_sms_voice_key" id="voice_sms_voice_key"
                                           placeholder="<?php echo e(trans('customer.enter_voice_sms_voice_key')); ?>">
                                </div>
                            </div>

                            <div class="container">
                                <hr>
                                <div class="row">
                                    <div class="col-md-12">
                                        <span><b><?php echo e(trans('admin.add_field')); ?></b></span>
                                        <button type="button" class="btn btn-sm btn-primary float-right addMore"><i
                                                class="fa fa-plus"></i></button>
                                    </div>
                                </div>
                                <?php if(isset($others)): ?>
                                    <?php $counter=9999?>
                                    <?php $__currentLoopData $others$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$ot): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                        <?php $counter++ ?>
                                        <div class="row" id="addedSection_<?php echo e($counter); ?>">
                                            <div class="form-group col-4 col-md-4 pt-2">
                                                <input type="text" class="form-control" value="<?php echo e(isset($key)?$key:''); ?>"
                                                       placeholder="<?php echo e(trans('customer.enter_key')); ?>"
                                                       name="key[]">
                                            </div>
                                            <div class="form-group col-6 col-md-7 pt-2">
                                                <input type="text" class="form-control" value="<?php echo e(isset($ot)?$ot:''); ?>"
                                                       placeholder="<?php echo e(trans('customer.enter_key_value')); ?>"
                                                       name="value[]">
                                            </div>
                                            <div class="col-md-1 col-2 pt-2">
                                                <button type="button" class="btn btn-sm btn-danger deleteRow"
                                                        data-id="<?php echo e($counter); ?>"><i
                                                        class="fa fa-minus "></i></button>
                                            </div>
                                        </div>
                                    <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                                <?php endif; ?>
                            </div>

                            <div class="container" id="addMoreSection">

                            </div>

                            <div class="container">
                                <hr>
                                <div class="row">
                                    <div class="col-md-12">
                                        <h6><b><?php echo e(trans('customer.add_headers')); ?></b>
                                            <button type="button"
                                                    class="btn btn-sm btn-primary float-right addMoreHeaders">
                                                <i
                                                    class="fa fa-plus"></i></button>
                                        </h6>
                                    </div>
                                </div>
                                <?php if(isset($headers)): ?>
                                    <?php $hCounter=888?>
                                    <div class="row">
                                        <?php $__currentLoopData $headers$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$header): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                            <?php $hCounter++ ?>
                                            <div class="form-group col-4 col-md-4 pt-2 header_sec_<?php echo e($hCounter); ?>">
                                                <input type="text" value="<?php echo e(isset($key)?$key:''); ?>" class="form-control"
                                                       placeholder="<?php echo e(trans('customer.enter_key')); ?>"
                                                       name="header_key[]">
                                            </div>
                                            <div class="form-group col-6 col-md-7 pt-2 header_sec_<?php echo e($hCounter); ?>">
                                                <input type="text" class="form-control"
                                                       value="<?php echo e(isset($header)?$header:''); ?>"
                                                       placeholder="<?php echo e(trans('customer.enter_key)value')); ?>"
                                                       name="header_value[]">
                                            </div>
                                            <div class="col-md-1 col-2 pt-2 header_sec_<?php echo e($hCounter); ?>">
                                                <button type="button" class="btn btn-sm btn-danger deleteHeaderRow"
                                                        data-id="<?php echo e($hCounter); ?>"><i
                                                        class="fa fa-minus "></i></button>
                                            </div>
                                        <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>

                                    </div>
                                <?php endif; ?>
                                <div class="row" id="addHeaders">

                                </div>
                            </div>

                        </div>
                        <?php if(isset($gateway) && $gateway->inputs): ?>
                            <div id="gateway-prefill-section"
                                 style="display: <?php if(isset($gateway) && $gateway->updated_from_gateway_prefill=='true'): ?> block <?php else: ?> none <?php endif; ?>">
                                <div class="row">
                                    <input type="hidden" name="gateway_prefill_enable" id="gateway_prefill_enable"
                                           value="<?php echo e($gateway->updated_from_gateway_prefill); ?>">
                                    <?php $__currentLoopData json_decode($gateway->inputs); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$input): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                        <div class="form-group col-md-12">
                                            <label><?php echo e(format_gateway_name($key)); ?></label>
                                            <input type="text" class="form-control" value="<?php echo e($input); ?>" name="<?php echo e($key); ?>"
                                                   placeholder="<?php echo e(trans('Enter '.format_gateway_name($key))); ?>">
                                        </div>
                                    <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>

                                </div>
                            </div>
                        <?php endif; ?>
                    </div>
                </div>

            </div>

            <div class="col-md-6 pl-2">
                <div class="form-group">
                    <h5><?php echo e(trans('customer.sending_setting')); ?></h5>
                </div>
                <div class="row">
                    <div class="form-group col-md-6">
                        <label for="daily_limit"><?php echo e(trans('admin.daily_message_send_limit')); ?></label>
                        <div class="input-group">
                            <input type="number" name="daily_limit"
                                   value="<?php echo e(isset($gateway->daily_limit)?$gateway->daily_limit:0); ?>"
                                   class="form-control">
                        </div>
                    </div>
                    <div class="form-group col-md-6">
                        <label for="monthly_limit"><?php echo e(trans('admin.monthly_message_send_limit')); ?></label>
                        <div class="input-group">
                            <input type="number" name="monthly_limit"
                                   value="<?php echo e(isset($gateway->monthly_limit)?$gateway->monthly_limit:0); ?>"
                                   class="form-control">
                        </div>
                    </div>
                </div>
                <div class="row">
                    <div class="form-group col-md-6">
                        <label for="logo"><?php echo e(trans('admin.message_limit')); ?></label>
                        <div class="input-group">
                            <input type="number" name="send_limit" placeholder="Enter Message Limit"
                                   value="<?php echo e(isset($gateway->send_limit)?$gateway->send_limit:0); ?>"
                                   class="form-control message_limit">
                        </div>
                    </div>
                    <div class="form-group col-md-6">
                        <label for="logo"><?php echo e(trans('admin.minutes')); ?></label>
                        <div class="input-group">
                            <input type="number" name="minute_limit" placeholder="Enter Minutes"
                                   value="<?php echo e(isset($gateway->minute_limit)?$gateway->minute_limit:0); ?>"
                                   class="form-control minutes">
                        </div>
                    </div>
                    <span class="text-danger ml-2">Per <span
                            id="minutes"><?php echo e(isset($gateway->minute_limit)?$gateway->minute_limit:0); ?></span>
    <?php echo e(trans('admin.minute_message_limit_will_be')); ?> <span
                            id="message_limit"><?php echo e(isset($gateway->send_limit)?$gateway->send_limit:0); ?></span></span>

                </div>

                <div class="row mt-2">
                    <div class="col-sm-6">
                        <div class="form-group">
                            <label for="logo"><?php echo e(trans('admin.from_time')); ?></label>
                            <div class="input-group">
                                <input type="time" name="start_time" placeholder="Enter start time"
                                       value="<?php echo e(isset($gateway->start_time)?$gateway->start_time:''); ?>"
                                       class="form-control">
                            </div>
                        </div>
                    </div>
                    <div class="col-sm-6">
                        <div class="form-group">
                            <label for="logo"><?php echo e(trans('admin.to_time')); ?></label>
                            <div class="input-group">
                                <input type="time" name="end_time" placeholder="Enter end time"
                                       value="<?php echo e(isset($gateway->end_time)?$gateway->end_time:''); ?>"
                                       class="form-control">
                            </div>
                        </div>
                    </div>
                    <div class="col-sm-12">
                        <div class="form-group">
                            <label for="logo"><?php echo e(trans('admin.off_day')); ?></label>
                            <select name="offday[]" multiple class="form-control select2" id="offDay">
                                <option value="saturday"><?php echo e(trans('admin.saturday')); ?></option>
                                <option value="sunday"><?php echo e(trans('admin.sunday')); ?></option>
                                <option value="monday"><?php echo e(trans('admin.monday')); ?></option>
                                <option value="tuesday"><?php echo e(trans('admin.tuesday')); ?></option>
                                <option value="wednesday"><?php echo e(trans('admin.wednesday')); ?></option>
                                <option value="thursday"><?php echo e(trans('admin.thursday')); ?></option>
                                <option value="friday"><?php echo e(trans('admin.friday')); ?></option>
                            </select>
                        </div>
                    </div>
                </div>
            </div>
        </div>

    </div>
</div>





<?php /**PATH /home/picotech/domains/sms.picotech.app/public_html/resources/views/admin/gateway/form.blade.php ENDPATH**/ ?>

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