Release inicial 1.0.0
This commit is contained in:
33
Models/ClaveProdServ.php
Normal file
33
Models/ClaveProdServ.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?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',
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user