29 lines
502 B
PHP
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');
|
|
}
|
|
}
|