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


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

@section('title') Form Data @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.list')</h2>
                    </div>
                <!-- /.card-header -->
                    <div class="card-body">
                        <table id="viewFormotable" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            @if($form_details->isNotempty())
                                <tr>
                                    @foreach($form_details  as $form_detail )
                                        <th>{{$form_detail->input_label}}</th>
                                    @endforeach
                                    <th>@lang('customer.action')</th>
                                </tr>
                            @else
                                <tr class="text-center">
                                    <th colspan="6">No data available</th>
                                </tr>
                            @endif
                            </thead>
                            <tbody>
                            @if($form_datas)
                                @foreach($form_datas as $form_data )
                                    <tr>
                                        @foreach($form_data['value'] as $data)
                                            <td>{{$data}}</td>
                                        @endforeach
                                        <td>
                                            <button class="btn btn-sm btn-danger"
                                                    data-message="Are you sure you want to delete this data?"
                                                    data-action="{{route('customer.form.form.data.delete',[$form_data['id']])}}"
                                                    data-input={"_method":"delete"} data-toggle="modal"
                                                    data-target="#modal-confirm">Delete
                                            </button>
                                        </td>
                                    </tr>
                                @endforeach
                            @else
                                <tr class="text-center">
                                    <td colspan="6">No data available</td>
                                </tr>
                            @endif
                            </tbody>
                        </table>
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>
            <!-- /.col -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->
@endsection

@section('extra-scripts')

@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.0036 ]--