<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 Zone extends Model
{
    use HasFactory;

    protected $table = 'zones';

    public $timestamps = false;
    protected $primaryKey = 'zone_id';

    protected $fillable = [
        'reg_id',
        'dep_id',
        'arr_id',
        'zone_name',
    ];

    public function region()
    {
        return $this->belongsTo(Region::class, 'reg_id', 'reg_id');
    }
    public fun