This commit is contained in:
Juan Felipe Duarte
2026-01-15 01:36:26 -05:00
parent a768146f65
commit 7257a2d795
39 changed files with 1769 additions and 34 deletions
+2 -12
View File
@@ -9,24 +9,14 @@ class Proveedor extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'nombre',
'contacto',
'nit',
'categoria',
'telefono',
'correo',
'direccion',
];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'id' => 'integer',
];