ProductImageResource.php 410 Bytes
Newer Older
Pancholin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php

namespace Onestartup\ProductResource\Model;

use Illuminate\Database\Eloquent\Model;

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

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