Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 24, 2020 07:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/434780db3bdd37568beea5b9085abe2a to your computer and use it in GitHub Desktop.
Save parzibyte/434780db3bdd37568beea5b9085abe2a to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Producto extends Model
{
protected $fillable = ["codigo_barras", "descripcion", "precio_compra", "precio_venta", "existencia", "es_servicio",
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment