!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/qr.picotech.app/public_html_v3_3/storage/framework/views/   drwxr-xr-x
Free 25.34 GB of 117.98 GB (21.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     fbd84d02839fa00f229e7327830b4361167c550e.php (14.07 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php echo csrf_field(); ?>
<div class="custom-tab-1">
    <ul class="nav nav-tabs">
        <li class="nav-item">
            <a class="nav-link active" data-toggle="tab" href="#basic"><i
                    class="la la-border-all mr-2"></i><?php echo e(trans('layout.basic')); ?></a>
        </li>
        <li class="nav-item">
            <a class="nav-link" data-toggle="tab" href="#extra"><i
                    class="la la-plus-square mr-2"></i> <?php echo e(trans('layout.extra')); ?></a>
        </li>
    </ul>
    <div class="tab-content">
        <div class="tab-pane fade active show" id="basic" role="tabpanel">
            <div class="pt-4">

                <div>
                    <section>
                        <div class="row">
                            <div class="col-lg-6 mb-2">
                                <div class="form-group">
                                    <label class="text-label"><?php echo e(trans('layout.restaurant')); ?>*</label>
                                    <select name="restaurant_id" class="form-control">
                                        <?php $__currentLoopData $restaurants$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $restaurant): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                            <option
                                                <?php echo e(isset($item) && $item->restaurant_id==$restaurant->id?'selected':''); ?> value="<?php echo e($restaurant->id); ?>"><?php echo e($restaurant->name); ?></option>
                                        <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                                    </select>
                                </div>
                            </div>

                            <div class="col-lg-6 mb-2">
                                <div class="form-group">
                                    <label class="text-label"><?php echo e(trans('layout.category')); ?>*</label>
                                    <div class="pull-right"><a class="btn-info btn btn-xs mb-1"
                                                               href="<?php echo e(route('category.create')); ?>"><?php echo e(trans('layout.new')); ?></a></div>
                                    <select name="category_id" class="form-control">
                                        <?php $__currentLoopData $categories$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                            <option
                                                <?php echo e(isset($item) && $item->category_id==$category->id?'selected':''); ?> value="<?php echo e($category->id); ?>"><?php echo e($category->name); ?></option>
                                        <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                                    </select>
                                </div>
                            </div>

                            <div class="col-lg-6 mb-2">
                                <div class="form-group">
                                    <label class="text-label"><?php echo e(trans('layout.item_name')); ?>*</label>
                                    <input value="<?php echo e(old('name')?old('name'):(isset($item)?$item->name:'')); ?>" type="text"
                                           name="name"
                                           class="form-control" placeholder="Ex: Burger" required>
                                </div>
                            </div>
                            <div class="col-lg-6 mb-2">
                                <div class="form-group">
                                    <label class="text-label"><?php echo e(trans('layout.item_details')); ?></label>
                                    <input value="<?php echo e(old('details')?old('details'):(isset($item)?$item->details:'')); ?>"
                                           type="text" name="details"
                                           class="form-control" placeholder="Ex: A great burger">
                                </div>
                            </div>
                            <div class="col-lg-6 mb-2">
                                <div class="form-group">
                                    <label class="text-label"><?php echo e(trans('layout.price')); ?>*</label>
                                    <input value="<?php echo e(old('price')?old('price'):(isset($item)?$item->price:'')); ?>" min="0"
                                           step="0.001" name="price"
                                           class="form-control" placeholder="Ex: 20" required>
                                </div>
                            </div>

                            <div class="col-lg-6 mb-2 d-none">
                                <div class="form-group">
                                    <label class="text-label"><?php echo e(trans('layout.discount_to')); ?>*</label>
                                    <select name="discount_to" class="form-control">
                                        <option
                                            <?php echo e(isset($item) && $item->discount_to=='everyone'?'selected':''); ?> value="everyone">
                                            Everyone
                                        </option>
                                        <option
                                            <?php echo e(isset($item) && $item->discount_to=='premium'?'selected':''); ?> value="premium">
                                            Premium
                                        </option>
                                    </select>
                                </div>
                            </div>

                            <div class="col-lg-6 mb-2">
                                <div class="form-group">
                                    <label class="text-label"><?php echo e(trans('layout.tax')); ?></label>
                                    <select name="tax_id" class="form-control">
                                        <option value=""><?php echo e(trans('layout.select_tax')); ?></option>
                                        <?php $__currentLoopData $taxes$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $tax): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                        <option
                                            <?php echo e(isset($item) && $tax->id==$item->tax_id?'selected':''); ?> value="<?php echo e($tax->id); ?>">
                                          <?php echo e($tax->title); ?> (<?php echo e($tax->type=='flat'?formatNumberWithCurrSymbol($tax->amount):formatNumber($tax->amount).'%'); ?>)
                                        </option>
                                            <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                                    </select>
                                </div>
                            </div>

                            <div class="col-lg-6 mb-2">
                                <div class="form-group">
                                    <label class="text-label"><?php echo e(trans('layout.discount')); ?>*</label>
                                    <input value="<?php echo e(old('discount')?old('discount'):(isset($item)?$item->discount:'')); ?>"
                                           min="0" step="0.001" type="number" name="discount"
                                           class="form-control" placeholder="Ex: 5" required>
                                </div>
                            </div>
                            <div class="col-lg-6 mb-2">
                                <div class="form-group">
                                    <label class="text-label"><?php echo e(trans('layout.discount_type')); ?>*</label>
                                    <select name="discount_type" class="form-control">
                                        <option
                                            <?php echo e(isset($item) && $item->discount_type=='flat'?'selected':''); ?> value="flat">
                                            <?php echo e(trans('layout.flat')); ?>

                                        </option>
                                        <option
                                            <?php echo e(isset($item) && $item->discount_type=='percent'?'selected':''); ?> value="percent">
                                            <?php echo e(trans('layout.percent')); ?>

                                        </option>
                                    </select>
                                </div>
                            </div>

                            <div class="col-lg-6 mb-2">
                                <label class="text-label"><?php echo e(trans('layout.item_image')); ?></label>
                                <div class="input-group">
                                    <div class="custom-file">
                                        <input name="item_image" type="file" class="custom-file-input">
                                        <label class="custom-file-label"><?php echo e(trans('layout.choose')); ?></label>

                                    </div>

                                </div>
                            </div>


                            <div class="col-lg-6 mb-2">
                                <div class="form-group">
                                    <label class="text-label"><?php echo e(trans('layout.status')); ?>*</label>
                                    <select name="status" class="form-control">
                                        <option
                                            <?php echo e(isset($item) && $item->status=='active'?'selected':''); ?> value="active">
                                            <?php echo e(trans('layout.active')); ?>

                                        </option>
                                        <option
                                            <?php echo e(isset($item) && $item->status=='inactive'?'selected':''); ?> value="inactive">
                                            <?php echo e(trans('layout.inactive')); ?>

                                        </option>
                                    </select>
                                </div>
                            </div>

                        </div>
                    </section>

                </div>

            </div>
        </div>
        <div class="tab-pane fade" id="extra">
            <div class="pt-4">
                <h4><?php echo e(trans('layout.item_extra')); ?></h4>
                <?php if(isset($item)): ?>
                    <?php $__currentLoopData $item->extras$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$extra): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                        <div class="row" id="extraSection<?php echo e($key); ?>">

                            <div class="col-lg-4 mb-2">
                                <div class="form-group row">
                                    <div class="col-sm-12">
                                        <input name="extra_title[]" type="text" value="<?php echo e($extra->title); ?>" class="form-control"
                                               placeholder="<?php echo e(trans('layout.add_extra_name')); ?>">
                                    </div>
                                </div>
                            </div>
                            <div class="col-lg-4 mb-2">
                                <div class="form-group row">
                                    <div class="col-sm-12">
                                        <input name="extra_price[]" type="number" value="<?php echo e($extra->price); ?>" step="0.0001"  min="0" class="form-control"
                                               placeholder="<?php echo e(trans('layout.enter_price')); ?>">
                                    </div>
                                </div>
                            </div>
                            <div class="col-lg-2 mb-2">
                                <div class="form-group row">
                                    <div class="col-sm-12">
                                        <select name="extra_status[]" class="form-control">
                                            <option <?php echo e($extra->status=='active'?'selected':''); ?> value="active"><?php echo e(trans('layout.active')); ?></option>
                                            <option <?php echo e($extra->status=='inactive'?'selected':''); ?> value="inactive"><?php echo e(trans('layout.inactive')); ?></option>
                                        </select>
                                    </div>
                                </div>

                            </div>
                            <div class="col-lg-2 mb-2">
                                <div class="form-group row mt-2">
                                    <button data-section="<?php echo e($key); ?>" type="button" class="btn btn-xs btn-danger delete-extra"><i class="la la-trash"></i>
                                    </button>
                                </div>
                            </div>

                        </div>
                    <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                <?php endif; ?>

                <div id="extraItemAddSection"></div>
                <div class="row">
                    <div class="col-lg-2 mb-2">
                        <button type="button"
                                class="btn btn-xs btn-info add_extra"><?php echo e(trans('layout.add_extra')); ?></button>
                    </div>
                </div>
            </div>
        </div>

    </div>
</div>
<?php /**PATH /home/pcolfjqt/qr.picotech.app/resources/views/item/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.0053 ]--