34 lines
677 B
PHP
34 lines
677 B
PHP
<?php
|
|
|
|
namespace Koneko\SatCatalogs\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ClaveProdServ extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'sat_clave_prod_serv';
|
|
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $fillable = [
|
|
'c_clave_prod_serv',
|
|
'descripcion',
|
|
'incluir_iva_trasladado',
|
|
'incluir_ieps_trasladado',
|
|
'complemento_que_debe_incluir',
|
|
'fecha_inicio_vigencia',
|
|
'fecha_fin_vigencia',
|
|
'estimulo_franja_fronteriza',
|
|
'palabras_similares',
|
|
];
|
|
}
|