<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\Vaccine;
use App\Models\Vaccination;
use Illuminate\Database\Eloquent\Model;
// use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Database\Eloquent\Factories\HasFactory;

class Lot extends Model
{
    use HasFactory; // SoftDeletes;

    protected $table        = 'lots';
    protected $primaryKey   = 'lot_id';
    public $timestamps      = false;

    protected $fillable = [
        "vaccine_id",
        "lot_matricule",
    ];

    /*const CREATED_AT = 'lot_created_at';
    const UPDATED_AT = 'lot_updated_at';
    const DELETED_AT = 'lot_deleted_at';

    protected $casts = [
        'lot_created_at' => 'datetime:Y-m-d m:i:s',
        'lot_updated_at' => 