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


Viewing file:     index.blade.php (6.66 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.dashboard')

@section('title', trans('layout.page'))

@section('css')
<link href="https://cdn.jsdelivr.net/npm/summernote@0.9.0/dist/summernote.min.css" rel="stylesheet">
<style>
    .modal-content-section.mt-4 {
    overflow-x: scroll;
}
</style>
@endsection

@section('main-content')
<div class="row page-titles mx-0">
    <div class="col-sm-6 p-md-0">
        <div class="welcome-text">
            <h4>{{ trans('layout.page') }}</h4>
        </div>
    </div>
    <div class="col-sm-6 p-md-0 justify-content-sm-end mt-2 mt-sm-0 d-flex">
        <ol class="breadcrumb">
            <li class="breadcrumb-item"><a href="#">{{ trans('layout.home') }}</a></li>
            <li class="breadcrumb-item active"><a href="javascript:void(0)">{{ trans('layout.page') }}</a></li>
        </ol>
    </div>
</div>

<div class="row">
    <div class="col-lg-12">
        <div class="card">
            <div class="card-header">
                <h4 class="card-title">{{ trans('layout.list') }}</h4>
                <div class="pull-right">
                    <button type="button" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#pageCreateModal">
                        {{ trans('layout.create') }}
                    </button>
                </div>
            </div>
            <div class="card-body">
                <div class="table-responsive">
                    <table class="table table-responsive-md text-center">
                        <thead>
                            <tr>
                                <th><strong>{{ trans('layout.name') }}</strong></th>
                                <th><strong>{{ trans('layout.status') }}</strong></th>
                                <th><strong>{{ trans('layout.position') }}</strong></th>
                                <th><strong>{{ trans('layout.action') }}</strong></th>
                            </tr>
                        </thead>
                        <tbody>
                           @if (isset($pages) && $pages)
                           @foreach($pages as $page)
                           <tr>
                               <td>{{ $page->name }}</td>
                               <td>
                                   <span class="badge badge-{{ $page->status == 'published' ? 'success' : 'warning' }}">
                                       {{ trans('layout.' . $page->status) }}
                                   </span>
                               </td>
                               <td>{{ ucfirst($page->position) }}</td>
                               <td>
                                   <div class="dropdown">
                                       <button type="button" class="btn btn-success light sharp" data-toggle="dropdown">
                                           <i class="fa fa-ellipsis-v"></i>
                                       </button>
                                       <div class="dropdown-menu">
                                           <button class="dropdown-item edit_page"
                                               data-id="{{ $page->id }}"
                                               data-name="{{ $page->name }}"
                                               data-title="{{ $page->title }}"
                                               data-description="{{ $page->description }}"
                                               data-status="{{ $page->status }}"
                                               data-position="{{ $page->position }}"
                                               data-action="{{ route('page.update', $page->id) }}"
                                               data-toggle="modal" data-target="#pageEditModal">
                                               {{ trans('layout.edit') }}
                                           </button>
                                           <button class="dropdown-item"
                                               data-message="{{ trans('layout.message.page_delete_warning') }}"
                                               data-action="{{ route('page.destroy', $page->id) }}"
                                               data-input='{"_method":"delete"}'
                                               data-toggle="modal" data-target="#modal-confirm">
                                               {{ trans('layout.delete') }}
                                           </button>
                                       </div>
                                   </div>
                               </td>
                           </tr>
                           @endforeach
                           @endif
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </div>
</div>

<!-- Create Modal -->
@section('create-modal-id', 'pageCreateModal')
@section('create-modal-title', 'Create Page')
@section('create-modal-content-wapper')
<form method="POST" action="{{ route('page.store') }}">
    @csrf
    <div class="modal-body">
        @include('page.form')
    </div>
    <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">{{ trans('layout.close') }}</button>
        <button type="submit" class="btn btn-primary">{{ trans('layout.submit') }}</button>
    </div>
</form>
@endsection

<!-- Edit Modal -->
@section('edit-modal-id', 'pageEditModal')
@section('edit-modal-title', 'Edit Page')
@section('edit-modal-content-wapper')
<form method="POST" id="pageFormUpdate">
    @csrf
    @method('PUT')
    <input type="hidden" name="id" id="edit-page-id">

    <div class="modal-body">
        @include('page.form-edit')
    </div>
    <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">{{ trans('layout.close') }}</button>
        <button type="submit" class="btn btn-primary">{{ trans('layout.submit') }}</button>
    </div>
</form>
@endsection

@endsection

@section('js')
<script src="https://cdn.jsdelivr.net/npm/summernote@0.9.0/dist/summernote.min.js"></script>
<script>
    $(document).ready(function () {
        $('#page_description').summernote();
        $('#edit-page-description').summernote();
    });

    $(document).on('click', '.edit_page', function () {
        $('#edit-page-id').val($(this).data('id'));
        $('#edit-page-name').val($(this).data('name'));
        $('#edit-page-title').val($(this).data('title'));
        $('#edit-page-description').summernote('code', $(this).data('description'));
        $('#edit-page-status').val($(this).data('status')).trigger('change');
        $('#edit-page-position').val($(this).data('position')).trigger('change');
        $('#pageFormUpdate').attr('action', $(this).data('action'));
    });
</script>
@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 ]--