관리-도구
편집 파일: ChiarmanInterview.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class ChiarmanInterview extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'user_id', 'title', 'slug', 'image', 'description', // Meta started 'meta_title', 'meta_keywords', 'meta_description', 'og_image' ]; }