24 lines
409 B
PHP
24 lines
409 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
/**
|
|
* @mixin IdeHelperProductImage
|
|
*/
|
|
class ProductImage extends Model
|
|
{
|
|
protected $fillable = [
|
|
'path',
|
|
'product_id',
|
|
];
|
|
|
|
public function product(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Product::class);
|
|
}
|
|
}
|