!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/test.sms.picotech.app/public_html/resources/views/   drwxr-xr-x
Free 25.38 GB of 117.98 GB (21.52%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

@section('title', __('Notification Details'))

@section('extra-css')
<style>
    .email-container {
        max-width: 700px;
        margin: 2rem auto;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
        overflow: hidden;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #fff;
    }
    .email-header {
        background-color: #1e40af; /* nice deep blue */
        color: white;
        padding: 1rem 1.5rem;
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }
    .email-info {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #444;
    }
    .email-info div {
        flex: 1 1 200px;
    }
    .email-info .label {
        font-weight: 600;
        color: #1e40af;
        margin-bottom: 0.25rem;
        display: block;
    }
    .email-body {
        padding: 1.5rem;
        white-space: pre-line;
        font-size: 1rem;
        line-height: 1.6;
        color: #222;
        background-color: #f9fafb;
    }
    .email-footer {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        color: #666;
        border-top: 1px solid #e2e8f0;
        text-align: right;
        font-style: italic;
    }
</style>
@endsection

@section('content')
<section class="content">
    <div class="email-container">

        <div class="email-header">
            {{ __('Notification Details') }}
        </div>

        <div class="email-info">
            <div>
                <span class="label">{{ __('Subject') }}</span>
                <span>{{ $notification->subject ?: __('Notification') }}</span>
            </div>
            <div>
                <span class="label">{{ __('To') }}</span>
                <span>{{$notification->user->fullName}} &lt;{{$notification->user->email}}&gt;</span> {{-- demo to email --}}
            </div>
        </div>

        <div class="email-body">
            {{ $notification->details }}
        </div>

        <div class="email-footer">
            {{ __('Sent') }}: {{ \Carbon\Carbon::parse($notification->created_at)->diffForHumans() }}
        </div>

    </div>
</section>
@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 ]--