관리-도구
편집 파일: VideoTitle.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class VideoTitle extends Model { use HasFactory; protected $fillable = [ 'title', ]; protected $casts = [ 'title'=>'json', ]; }