Edit File: ProductImage.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; class ProductImage extends BaseModel { use HasFactory; const IMAGEPATH = 'products'; protected $fillable = [ 'product_id', 'image', ]; public function product() { return $this->belongsTo(Product::class); } }
Back to File Manager