faltan las fechas

This commit is contained in:
jaimejimenezortega
2024-06-16 01:47:34 +02:00
parent 4076fff844
commit 3171c32283
10 changed files with 738 additions and 54 deletions

View File

@ -25,6 +25,17 @@ class AlbaranLineaModel extends \App\Models\BaseModel
'ejemplares_por_caja',
'precio_unidad',
'total',
'user_created_id',
'user_updated_id',
'created_at',
'updated_at',
'deleted_at',
];
protected $useSoftDeletes = true;
protected $useTimestamps = true;
protected $createdField = 'created_at';
protected $updatedField = 'updated_at';
protected $deletedField = 'deleted_at';
}