CategoriaSat.php 396 Bytes
Newer Older
Francisco Salazar committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php

namespace Onestartup\Shop\Model;

use Illuminate\Database\Eloquent\Model;

class CategoriaSat extends Model
{
    protected $table = 'categorias_sat';
    protected $fillable = [
        'nombre',
    	'clave_producto',
		'clave_unidad',
		'unidad'
    ];

    public function products()
    {
        return $this->hasMany('Onestartup\Shop\Model\ProductShop', 'category_sat_id');
    }
}