repuve-backend-v1/app/Models/Municipality.php
Juan Felipe Zapata Moreno 7a5bf3a2a0 ADD: municipality
2025-11-03 15:43:12 -06:00

23 lines
376 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',
];
}