<br />
<b>Warning</b>:  Undefined variable $auth in <b>/home/pevo0181/public_html/pia-soft.com/cleania/routes/index.php</b> on line <b>542</b><br />
<br />
<b>Warning</b>:  Trying to access array offset on value of type null in <b>/home/pevo0181/public_html/pia-soft.com/cleania/routes/index.php</b> on line <b>542</b><br />
<?php

namespace App\Models;

use App\Models\User;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Database\Eloquent\Factories\HasFactory;

class RoleUser extends Model
{
     use HasFactory, SoftDeletes;

    protected $table        = 'role_users';
    protected $primaryKey   = 'role_user_id';

    protected $fillable = [
        "user_id",
        "register_user_id",
        "update_user_id",
        "rous_action",
    ];

    const CREATED_AT = 'rous_created_at';
    const UPDATED_AT = 'rous_updated_at';
    const DELETED_A