Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 6, 2020 20:52
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/2f5cc23249652201df57dca7ae7b1748 to your computer and use it in GitHub Desktop.
Save parzibyte/2f5cc23249652201df57dca7ae7b1748 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ProductoVendido extends Model
{
protected $table = "productos_vendidos";
protected $fillable = ["id_venta", "descripcion", "codigo_barras", "precio", "cantidad"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment