!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 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_v5_6/resources/views/customer/contacts/   drwxr-xr-x
Free 25.51 GB of 117.98 GB (21.62%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

@section('title') Block Contacts @endsection

@section('extra-css')
    <link rel="stylesheet" href="{{asset('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')}}">
    <link rel="stylesheet" href="{{asset('plugins/datatables-responsive/css/responsive.bootstrap4.min.css')}}">
@endsection

@section('content')
    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-12 mt-3">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">@lang('customer.block_contacts')</h2>
                        <div class="float-right">
                            {{-- <a class="btn btn-primary" href="{{route('customer.contacts.create')}}">@lang('customer.new')</a> --}}
                            <a class="btn btn-info" href="{{route('customer.contact.import.contacts')}}">@lang('customer.import')</a>
                        </div>
                    </div>
                    <!-- /.card-header -->
                    <div class="card-body table-body">
                        <table id="contacts" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            <tr>
                                <th>@lang('customer.number')</th>
                                <th>@lang('customer.name')</th>
                                <th>@lang('customer.email')</th>
                                <th>@lang('customer.address')</th>
                                <th>@lang('customer.city')</th>
                                <th>@lang('customer.state')</th>
                                <th>@lang('customer.zip_code')</th>
                                <th>@lang('customer.company')</th>
                                {{-- <th>@lang('customer.note')</th> --}}
                                <th>@lang('customer.action')</th>
                            </tr>
                            </thead>
                            <tbody>
                                @if($contacts)
                                @foreach ($contacts as $contact)
                                <tr>
                                    <td>{{ $contact->number }}</td>
                                    <td>{{ $contact->full_name }}</td>
                                    <td>{{ $contact->email }}</td>
                                    <td>{{ $contact->address }}</td>
                                    <td>{{ $contact->city }}</td>
                                    <td>{{ $contact->state }}</td>
                                    <td>{{ $contact->zip_code }}</td>
                                    <td>{{ $contact->company }}</td>
                                    {{-- <td>{{ $contact->note }}</td> --}}
                                    <td>
                                        <a href="{{ route('customer.contact.block.number',[$contact->id,'block'=>'no']) }}" class="btn btn-sm btn-info">
                                            <i class="fa fa-undo"></i></a>
                                        <div id="type_of_block"></div>
                                    </td>
                                </tr>
                                @endforeach

                                @endif
                            </tbody>
                        </table>
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>
            <!-- /.col -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->
@endsection

@section('extra-scripts')
    <script src="{{asset('plugins/datatables/jquery.dataTables.min.js')}}"></script>
    <script src="{{asset('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js')}}"></script>
    <script src="{{asset('plugins/datatables-responsive/js/dataTables.responsive.min.js')}}"></script>
    <script src="{{asset('plugins/datatables-responsive/js/responsive.bootstrap4.min.js')}}"></script>
    <script>
        const urlParams = new URLSearchParams(window.location.search);
        const type = urlParams.get('type');
        let html ='';
        html=`
        <input type="hidden" value="${type}" name="type" class="type">
        `
        $('#type_of_block').append(html);
    </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.0067 ]--