관리-도구
편집 파일: NewsSection.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class NewsSection extends Model { use HasFactory; protected $fillable = [ 'feature_img', 'title', 'written_on', 'content', 'slug', 'external_link', 'status', 'meta_title', 'meta_keywords', 'meta_description', ]; protected $casts = [ 'title' => 'array', 'content' => 'array', 'written_date' => 'date', ]; }