ClavesProducto.php 230 Bytes
Newer Older
Francisco Salazar committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php

namespace Onestartup\Shop\Model;

use Illuminate\Database\Eloquent\Model;

class ClavesProducto extends Model
{
    protected $table = 'claves_productos';
    protected $fillable = [
    	'clave',
		'descripcion',
    ];
}