<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 TypeUser extends Model
{
   use HasFactory, SoftDeletes;

    // public $timestamps      = false;
    protected $table        = 'type_users';
    protected $primaryKey   = 'type_user_id';

     protected $fillable = [
        "tus_name",
        "tus_action",
    ];

    const CREATED_AT = 'tus_created_at';
    const UPDATED_AT = 'tus_updated_at';
    const DELETED_AT = 't