!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/vendor/laravel/framework/src/Illuminate/Notifications/   drwxrwxr-x
Free 13.14 GB of 57.97 GB (22.66%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     DatabaseNotification.php (2.78 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Notifications;

use 
Illuminate\Database\Eloquent\Builder;
use 
Illuminate\Database\Eloquent\Model;

class 
DatabaseNotification extends Model
{
    
/**
     * The "type" of the primary key ID.
     *
     * @var string
     */
    
protected $keyType 'string';

    
/**
     * Indicates if the IDs are auto-incrementing.
     *
     * @var bool
     */
    
public $incrementing false;

    
/**
     * The table associated with the model.
     *
     * @var string
     */
    
protected $table 'notifications';

    
/**
     * The guarded attributes on the model.
     *
     * @var array
     */
    
protected $guarded = [];

    
/**
     * The attributes that should be cast to native types.
     *
     * @var array
     */
    
protected $casts = [
        
'data' => 'array',
        
'read_at' => 'datetime',
    ];

    
/**
     * Get the notifiable entity that the notification belongs to.
     *
     * @return \Illuminate\Database\Eloquent\Relations\MorphTo
     */
    
public function notifiable()
    {
        return 
$this->morphTo();
    }

    
/**
     * Mark the notification as read.
     *
     * @return void
     */
    
public function markAsRead()
    {
        if (
is_null($this->read_at)) {
            
$this->forceFill(['read_at' => $this->freshTimestamp()])->save();
        }
    }

    
/**
     * Mark the notification as unread.
     *
     * @return void
     */
    
public function markAsUnread()
    {
        if (! 
is_null($this->read_at)) {
            
$this->forceFill(['read_at' => null])->save();
        }
    }

    
/**
     * Determine if a notification has been read.
     *
     * @return bool
     */
    
public function read()
    {
        return 
$this->read_at !== null;
    }

    
/**
     * Determine if a notification has not been read.
     *
     * @return bool
     */
    
public function unread()
    {
        return 
$this->read_at === null;
    }

    
/**
     * Scope a query to only include read notifications.
     *
     * @param  \Illuminate\Database\Eloquent\Builder  $query
     * @return \Illuminate\Database\Eloquent\Builder
     */
    
public function scopeRead(Builder $query)
    {
        return 
$query->whereNotNull('read_at');
    }

    
/**
     * Scope a query to only include unread notifications.
     *
     * @param  \Illuminate\Database\Eloquent\Builder  $query
     * @return \Illuminate\Database\Eloquent\Builder
     */
    
public function scopeUnread(Builder $query)
    {
        return 
$query->whereNull('read_at');
    }

    
/**
     * Create a new database notification collection instance.
     *
     * @param  array  $models
     * @return \Illuminate\Notifications\DatabaseNotificationCollection
     */
    
public function newCollection(array $models = [])
    {
        return new 
DatabaseNotificationCollection($models);
    }
}

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