관리-도구
편집 파일: FeaturedProduct.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; class FeaturedProduct extends Model { protected $fillable = [ 'product_id','section_key','position','active','starts_at','ends_at' ]; protected $casts = [ 'active' => 'boolean', 'position' => 'integer', 'starts_at' => 'datetime', 'ends_at' => 'datetime', ]; public function product(): BelongsTo { return $this->belongsTo(Product::class); } }