ProductImageShop.php 376 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
<?php

namespace Onestartup\Shop\Model;

use Illuminate\Database\Eloquent\Model;

class ProductImageShop extends Model
{
    protected $table = 'product_images_shop';
    protected $fillable = [
    	'path',
		'description',
		'product_id'
    ];

    public function product()
    {
        return $this->belongsTo('Onestartup\Shop\Model\ProductShop', 'product_id');
    }
}