!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/resources/views/admin/template/   drwxr-xr-x
Free 12.99 GB of 57.97 GB (22.42%)
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 (3.15 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.app')
@section('head')
@include('layouts.partials.headersection',['title'=>'Templates'])
@endsection
@section('content')
<div class="row">
    <div class="col-12 mt-2">
        <div class="card">
            <div class="card-body">
                
                    <div class="float-left mb-1">
                    
                    </div>
                    <div class="float-right">
                        @can('template.upload')
                        <a href="#" data-toggle="modal" data-target="#exampleModal" class="btn btn-primary">{{ __('Upload Theme') }}</a>
                        @endcan
                    </div>

                    <div class="table-responsive">
                        <table class="table table-striped table-hover text-center table-borderless">
                            <thead>
                                <tr>
                                    <th><i class="fa fa-image"></i></th>
                                    <th>{{ __('Name') }}</th>
                                    <th>{{ __('Assets root') }}</th>
                                    <th>{{ __('View root') }}</th>
                                    <th>{{ __('Total Installed') }}</th>

                                    <th>{{ __('Uploaded at') }}</th>
                                    <th>{{ __('Action') }}</th>
                                </tr>
                            </thead>
                            <tbody>
                                @foreach($posts as $row)
                                <tr id="row{{ $row->id }}" >
                                    <td><img src="{{ asset($row->asset_path.'/screenshot.png') }}" height="100"></td>
                                    <td>{{ $row->name }}</td>
                                    <td>{{ $row->asset_path }}</td>
                                    <td>{{ $row->src_path }}</td>
                                    <td>{{ $row->installed_count }}</td>
                                    <td>{{ $row->created_at->format('d-F-Y') }}</td>
                                    <td>@if( $row->installed_count == 0) <a href="{{ route('admin.templates.delete',$row->id) }}" class="btn btn-danger cancel"><i class="fa fa-trash"></i></a> @endif</td>
                                </tr>
                                @endforeach
                            </tbody>
                            <tfoot>
                                <tr>
                                    <th><i class="fa fa-image"></i></th>
                                    <th>{{ __('Name') }}</th>
                                    <th>{{ __('Assets root') }}</th>
                                    <th>{{ __('View root') }}</th>
                                    <th>{{ __('Total Installed') }}</th>

                                    <th>{{ __('Uploaded at') }}</th>
                                    <th>{{ __('Action') }}</th>
                                </tr>
                            </tfoot>
                        </table>
                    </div>
                
            </div>
        </div>
    </div>
</div>

@can('template.upload')
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLabel">{{ __('Upload New Theme') }}</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <form method="post" action="{{ route('admin.template.store') }}" class="basicform_with_reload">
          @csrf
      
      <div class="modal-body">
          <div class="form-group">
              <label>{{ __('Select File') }}</label>
              <input type="file" class="form-control" accept=".zip" name="file" required="">
          </div>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">{{ __('Close') }}</button>
        <button type="submit" class="btn btn-primary basicbtn">{{ __('Upload') }}</button>
      </div>
      </form>
    </div>
  </div>
</div>
@endcan
@endsection

@push('js')
<script src="{{ asset('assets/js/form.js') }}"></script>
@endpush

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.005 ]--