Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 6, 2020 20:24
Embed
What would you like to do?
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Producto extends Model
{
protected $fillable = ["codigo_barras", "descripcion", "precio_compra", "precio_venta", "existencia",
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment