123456789101112131415161718192021222324 |
- <?php
- namespace App\Shop\ProductImages;
- use App\Shop\Products\Product;
- use Illuminate\Database\Eloquent\Model;
- class ProductImage extends Model
- {
- protected $fillable = [
- 'product_id',
- 'src'
- ];
- public $timestamps = false;
- /**
- * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
- */
- public function product()
- {
- return $this->belongsTo(Product::class);
- }
- }
|