repuve-backend-v1/app/Models/Municipality.php
2025-11-03 16:28:37 -06:00

28 lines
465 B
PHP

<?php namespace App\Models;
/**
* @copyright (c) 2025 Notsoweb Software (https://notsoweb.com) - All Rights Reserved
*/
use Illuminate\Database\Eloquent\Model;
/**
* Descripción
*
* @author Moisés Cortés C. <moises.cortes@notsoweb.com>
*
* @version 1.0.0
*/
class Municipality extends Model
{
protected $fillable = [
'code',
'name',
];
public function modules()
{
return $this->hasMany(Module::class);
}
}