<?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