관리-도구
편집 파일: ReportAnnual.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Database\Eloquent\Factories\HasFactory; class ReportAnnual extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'user_id', 'title', // 'nepali_date', 'slug', 'file', 'meta_title', 'meta_keywords', 'meta_description', ]; protected $casts = [ 'title' => 'json' ]; }