<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 Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Occupant extends Model
{
    use HasFactory;

    protected $table   = 'occupants';

    protected $primaryKey = 'occupant_id';

    public $timestamps      = false;

    protected $fillable = [
        'occupant_civility',
        'occupant_nom',
        'occupant_prenom',
        'occupant_name',
        'occupant_birth',
        'occupant_profession',
        'occupant_fonct',
        'occupant_fonct_date',
        'occupant_matricule',
        'occupant_status',
        'occupant_qrcode',
        'occupant_phone',
        'ad_id',
        'occupant_date',
    ];

    public function admin()
    {
