관리-도구
편집 파일: HotOffer.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class HotOffer extends Model { protected $table = 'hotoffer'; // make sure this matches your DB table name protected $primaryKey = 'hotoff_id'; protected $fillable = ['hotoffer', 'image']; public function products() { return $this->hasMany(Products::class, 'hotoff_id'); } }