관리-도구
편집 파일: Blog.php
<?php namespace App\Models; use App\Models\BlogCategory; use Illuminate\Database\Eloquent\Model; class Blog extends Model { protected $fillable = [ 'title', 'sub_title', 'content', 'image', 'button_text', 'button_link', 'is_active', 'is_featured', 'blog_category_id' ]; public function category(){ return $this->belongsTo(BlogCategory::class,'blog_category_id','id'); } }