<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 OthersInformation extends Model
{
    use HasFactory;
    protected $table        = 'informations';
    protected $primaryKey   = 'info_id';
    public $timestamps      = false;

    protected $fillable = [
        'usr_id',
        'int_id',
        'reg_id',
        'dep_id',
        'arr_id',
        'base_id',
        'unit_id',
        'grade_id',
        'base_id',
        'service_id',
        'info_matricule',
        'ad_id',
        'info_annee',
        'info_date_dernier_grade',
        'info_date_reg',
    ];
    
    
    public function intitule()
    {
        return $this->belongsTo(Intitule::class, 'int_id', 'int_id');
    }
    public function grade()
    {
        return $this->belongsTo(Grade::class, 'grade_id', 'grade_id');
    }
    public