repuve-backend-v1/app/Models/CatalogNameImg.php
2025-10-30 17:33:05 -06:00

29 lines
502 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 CatalogNameImg extends Model
{
protected $table = 'catalog_name_img';
protected $fillable = [
'name',
];
public function files()
{
return $this->hasMany(File::class, 'name_id');
}
}