관리-도구
편집 파일: SubCategory.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class SubCategory extends Model { public $fillable = ['cat_id','subcategory','image']; protected $table = 'subcategory'; protected $primaryKey = 'subcat_id'; public function category() { return $this->belongsTo(Category::class, 'cat_id', 'cat_id'); } public function products() { return $this->hasMany(Products::class, 'subcat_id'); } }