*/ use HasFactory; public $timestamps = false; public $fillable = ['name', 'nami_id', 'is_null']; public $casts = [ 'is_null' => 'boolean', ]; /** * @return Collection */ public static function forSelect(): Collection { return static::select('id', 'name')->get(); } }