Files
twotalesanimation 6de01c13c5 New Initial Commit
2025-12-09 12:04:54 +02:00

20 lines
301 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ProductImage extends Model
{
protected $fillable = [
'product_id',
'image_path',
'sort_order',
];
public function product()
{
return $this->belongsTo(Product::class);
}
}