관리-도구
편집 파일: Product_images.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Product_images extends Model { protected $fillable = [ 'product_id', 'image_url', 'is_primary', 'sort_order', ]; public function product() { return $this->belongsTo(\App\Models\Products::class, 'product_id'); } }