shell bypass 403

UnknownSec Shell


name : Contact.php
<?php

namespace Modules\Contacts\Entities;

use Illuminate\Database\Eloquent\Model;

class Contact extends Model
{
    protected $table = 'contacts';

    protected $dates = [
        'created_at',
        'updated_at',
    ];

    protected $fillable = [
        'fullname',
        'phone',
        'email',
        'subject',
        'content',
        'is_readed',
    ];
    
    protected $casts = [
        'is_readed' => 'boolean',
    ];

    public function scopeReaded($query)
    {
        return $query->where('is_readed', '=', 1);
    }
}

© 2025 UnknownSec
afwwrfwafr45458465
Password